@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,400;0,500;1,300&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f7ea40;
}

.custom-card {
    border: 7px solid #0025c4;
    border-radius: 23px;
    background-color: #fef7ff;
}

.custom-card .card-body {
    overflow: hidden;
}

.custom-card .card-body img {
    height: 270px;
}

.book-name {
    font-weight: 500;
    margin: 0.5rem;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 1.1rem;
    color: #7a7a7a;
}

.book-name-full {
    font-weight: 500;
    display: block;
    color: #5b5b5b;
}

.author-name {
    font-weight: 500;
    margin: 0.5rem;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 0.85rem;
    color: #0025c4;
}

.author-name-full {
    display: block;
    color: #0025c4;
}

.btn-custom {
    border-radius: 20px;
    padding: 0.5rem 1.2rem;
    font-weight: 500;
    /* background-color: #9c73de;
    border: 1px solid #c3abe9; */
}

.btn-custom.disabled {
    cursor: no-drop;
}

/* .btn-custom:hover, .btn-custom:focus, .btn-custom.active {
    background-color: #633f9c;
} */

.custom-frame {
    width: 100%;
    height: 80vh;
}

.pagination-frame {
    display: flex;
    justify-content: center;
}

.page-item:first-child .page-link {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}

.page-item:last-child .page-link {
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}

.page-link {
    color: #9c73de;
    font-weight: 600;
    padding: 0.5rem 1rem
}

.header {
    background-color: #041354;
    padding: 2rem;
    margin-bottom: 2rem;
    border-bottom: 5px solid #f7bd07;
}

.header h1 {
    color: #fff;
}

.header h4 {
    color: #f7bd07;
}