/* Book Library Section Styles */
.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#book-library button>a {
    color: white;
    text-decoration: none;
}

/* Make card body flex container to push button to bottom */
#book-library .card {
    display: flex;
    flex-direction: column;
}

#book-library .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

#book-library .card-body .btn {
    margin-top: auto;
}

/* Colors */
.bg-yellow {
    background-color: #eab308;
}

.bg-blue {
    background-color: #3b82f6;
}

.bg-green {
    background-color: #22c55e;
}

.bg-purple {
    background-color: #8b5cf6;
}

.bg-orange {
    background-color: #f97316;
}

.bg-pink {
    background-color: #ec4899;
}

.bg-red {
    background-color: #ef4444;
}

/* Buttons */
.btn-yellow,
.btn-blue,
.btn-green,
.btn-purple,
.btn-orange {
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-yellow {
    background-color: #eab308;
}

.btn-blue {
    background-color: #3b82f6;
}

.btn-green {
    background-color: #22c55e;
}

.btn-purple {
    background-color: #8b5cf6;
}

.btn-orange {
    background-color: #f97316;
}

.btn-yellow:hover {
    background-color: #ca8a04;
    color: white;
}

.btn-blue:hover {
    background-color: #2563eb;
    color: white;
}

.btn-green:hover {
    background-color: #16a34a;
    color: white;
}

.btn-purple:hover {
    background-color: #7c3aed;
    color: white;
}

.btn-orange:hover {
    background-color: #ea580c;
    color: white;
}

/* Card Hover Effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Text Colors */
.text-purple {
    color: #8b5cf6;
}

/* Image Fit */
.object-fit-cover {
    object-fit: cover;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .icon-circle {
        width: 48px;
        height: 48px;
    }
}