﻿.card-body {
    padding: 5px;
}

.book-card {
    max-width: 100%;
    border-radius: 10px;
}

.book-card-new {
    position: relative;
    width: 280px;
    margin: auto;
}

.book-card img {
    width: 100%;
    object-fit: cover;
    border-radius: .35rem;
    height:250px;
} 
.book-title {
    color: #d32f2f;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap; /* single line */
    overflow: hidden; /* hide overflow */
    text-overflow: ellipsis; /* show ... */
    display: block;
    margin-top: 0px;
    padding-top:2px;
}

.price-box {
    font-size: 14px;
    margin-top: 5px;
}

.price-box .old-price {
    text-decoration: line-through;
    color: #888;
    margin-right: 6px;
    font-weight: 500;
}

.price-box .offer-price {
    color: #27ae60;
    font-weight: 700;
}

.book-card .btn-outline-warning {
    border-color: #f39c12;
    color: #f39c12;
}

    .book-card .btn-outline-warning:hover {
        background-color: #f39c12;
        color: white;
    }

.book-card .btn-danger {
    background-color: #e74c3c;
    border: none;
}
.discount-badge {
    height: 30px;
    width: 75px;
    position: absolute;
    top: 12px;
    left: -1px;
    background-color: #FF3B3B;
    padding: 4px 15px;
    padding: 4px 12px;
    font-weight: bold;
    border-radius: 0px;
    font-size: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.page-item.active .page-link {
    background-color: #F29434 !important;
    border-color: #d96e00 !important;
}
.page-link:hover {
    color: #0a58ca !important;
}