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

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

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

.tbc-bc-info-title {
    font-size: 28px;
    text-align: center;
    color: #1a1a1a;
    margin: 0 0 20px;
    line-height: 1.3;
}

.tbc-bc-info-cover {
    text-align: center;
    margin: 20px 0;
}

.tbc-bc-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);
}

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

.tbc-bc-book-description {
    font-size: 16px;
    color: #424242;
    text-align: left;
}

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

.tbc-bc-info h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin: 0 0 15px;
    padding: 0;
}

.tbc-bc-info ul {
    margin: 0 0 10px 20px;
    padding: 0;
}

.tbc-bc-info li {
    margin-bottom: 8px;
    color: #424242;
}

.tbc-bc-info a {
    color: #1a73e8;
    text-decoration: none;
}

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

/* Week Cards */
.tbc-bc-schedule-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.tbc-bc-week-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.tbc-bc-week-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.tbc-bc-week-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    background: #007cff;
    color: #fff;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.tbc-bc-week-date {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
}

.tbc-bc-week-content {
    padding: 16px 18px;
}

.tbc-bc-week-section {
    margin-bottom: 12px;
}

.tbc-bc-week-section:last-child {
    margin-bottom: 0;
}

.tbc-bc-section-label {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.tbc-bc-chapter-list {
    margin: 0 0 0 20px;
    padding: 0;
    list-style: disc;
}

.tbc-bc-chapter-list li {
    font-size: 14px;
    color: #555;
    margin-bottom: 4px;
    line-height: 1.4;
}

.tbc-bc-chapter-list li:last-child {
    margin-bottom: 0;
}

.tbc-bc-week-footer {
    padding: 10px 18px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.tbc-bc-week-duration {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* Voting State */
.tbc-bc-info-voting {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 16px;
    border: 2px solid #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.tbc-bc-voting-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.tbc-bc-voting-title {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px;
}

.tbc-bc-voting-message {
    font-size: 18px;
    color: #666;
    margin: 0 0 32px;
    line-height: 1.6;
}

.tbc-bc-voting-actions {
    display: flex;
    justify-content: center;
}

.tbc-bc-voting-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 32px;
    background: #007cff;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 124, 255, 0.2);
}

.tbc-bc-voting-link:hover {
    background: #0066d6;
    box-shadow: 0 4px 12px rgba(0, 124, 255, 0.3);
    text-decoration: none;
}

.tbc-bc-link-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.tbc-bc-link-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    text-align: left;
}

.tbc-bc-link-text strong {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.tbc-bc-link-text small {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    line-height: 1.4;
}

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

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

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

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

    .tbc-bc-info h3 {
        font-size: 16px;
    }

    /* Week Cards Mobile - Single Column */
    .tbc-bc-schedule-cards {
        grid-template-columns: 1fr;
    }

    .tbc-bc-week-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px 14px;
    }

    .tbc-bc-week-date {
        font-size: 14px;
    }

    .tbc-bc-week-content {
        padding: 14px;
    }

    .tbc-bc-section-label {
        font-size: 14px;
    }

    .tbc-bc-chapter-list li {
        font-size: 13px;
    }

    /* Voting State Mobile */
    .tbc-bc-info-voting {
        padding: 40px 24px;
    }

    .tbc-bc-voting-icon {
        font-size: 48px;
    }

    .tbc-bc-voting-title {
        font-size: 24px;
    }

    .tbc-bc-voting-message {
        font-size: 16px;
    }

    .tbc-bc-voting-link {
        flex-direction: column;
        gap: 12px;
        padding: 24px;
        text-align: center;
    }

    .tbc-bc-link-text {
        align-items: center;
        text-align: center;
    }
}