/* Modern Book Info Cards */
.book-info-cards {
    margin-top: 30px;
}

.book-info-card {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.book-info-card:hover {
    background: #ffffff;
    border-color: #0066cc;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
    transform: translateY(-2px);
}

.book-info-icon-wrapper {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 10px !important;
    width: 100% !important;
}

.book-info-icon {
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%) !important;
    border-radius: 10px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
}

.book-info-icon i {
    font-size: 22px !important;
    color: #ffffff !important;
}

.book-info-content {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
}

.book-info-label {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #212529 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.4 !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
}

.book-info-value {
    font-size: 16px;
    font-weight: 500;
    color: #212529;
    line-height: 1.5;
    margin-top: 0;
}

.book-info-link {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.book-info-link:hover {
    color: #004499;
    text-decoration: underline;
}

/* Book Description Section */
.book-description-section {
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #0066cc;
    display: flex;
    align-items: center;
}

.section-title i {
    color: #0066cc;
}

.book-description-content {
    line-height: 1.8;
    color: #495057;
    font-size: 16px;
}

.description-text {
    color: #495057;
}

.description-text p {
    margin-bottom: 15px;
}

.description-text p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .book-info-card {
        padding: 15px !important;
    }
    
    .book-info-icon-wrapper {
        gap: 10px !important;
        margin-bottom: 8px !important;
    }
    
    .book-info-icon {
        width: 45px !important;
        height: 45px !important;
    }
    
    .book-info-icon i {
        font-size: 18px !important;
    }
    
    .book-info-label {
        font-size: 12px !important;
        font-weight: 700 !important;
    }
    
    .book-info-value {
        font-size: 14px !important;
    }
    
    .book-description-section {
        padding: 25px 20px;
    }
    
    .section-title {
        font-size: 20px;
    }
}

