/* Book Club Info Styles */
.book-club-info {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.book-info-section {
    margin-bottom: 30px;
}

.book-info-section:last-child {
    margin-bottom: 0;
}

/* Book Title */
.book-info-title {
    font-size: 28px;
    text-align: center;
    color: #1a1a1a;
    margin: 0 0 20px;
    line-height: 1.3;
}

/* Cover Image */
.book-info-cover {
    text-align: center;
    margin: 20px 0;
}

.book-cover-image {
    max-width: 300px;
    max-height: 400px;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.book-cover-image:hover {
    transform: translateY(-4px);
}

.book-info-author {
    font-size: 20px;
    text-align: center;
    color: #666;
    margin: 20px 0 30px;
}

/* Description */
.book-description {
    font-size: 16px;
    color: #424242;
    text-align: left;
}

.book-description p {
    margin-bottom: 15px;
}

/* Section Headings */
.book-club-info h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin: 0 0 15px;
    padding: 0;
}

/* Lists */
.book-club-info ul {
    margin: 0 0 10px 20px;
    padding: 0;
}

.book-club-info li {
    margin-bottom: 8px;
    color: #424242;
}

/* Links */
.book-club-info a {
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.book-club-info a:hover {
    color: #1557b0;
    text-decoration: underline;
}

/* Error State */
.book-club-info-error {
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .book-club-info {
        margin: 10px;
        padding: 15px;
    }

    .book-info-title {
        font-size: 24px;
    }

    .book-cover-image {
        max-width: 250px;
        max-height: 300px;
    }

    .book-info-author {
        font-size: 18px;
    }

    .book-club-info h3 {
        font-size: 16px;
    }

    .book-description,
    .book-club-info li {
        font-size: 15px;
    }
}