/* Book Content Formatting Styles */

.season-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.season-header h1 {
    margin: 0 0 15px 0;
    font-size: 2.5rem;
    font-weight: 600;
}

.season-header p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
}

.month-section {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.month-section h2 {
    color: #667eea;
    margin: 0 0 20px 0;
    font-size: 1.8rem;
    border-bottom: 3px solid #667eea;
    padding-bottom: 10px;
}

.calendar-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.calendar-table thead th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
}

.calendar-table tbody td {
    border: 1px solid #e0e0e0;
    padding: 15px;
    text-align: center;
    vertical-align: top;
    background: white;
    position: relative;
    min-height: 60px;
}

.calendar-table tbody td.day {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}

.calendar-table tbody td.sabbath {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border: 2px solid #e74c3c;
    font-weight: 700;
    color: #c0392b;
}

.calendar-table tbody td.empty {
    background: #fafafa;
    border-color: #f0f0f0;
}

.sabbath-label {
    display: block;
    font-size: 0.75rem;
    margin-top: 4px;
    color: #e74c3c;
    font-weight: 600;
    text-transform: uppercase;
}

.month-details {
    background: #f8f9ff;
    border-left: 4px solid #667eea;
    padding: 20px;
    margin-top: 20px;
    border-radius: 4px;
}

.month-details h3 {
    margin: 0 0 15px 0;
    color: #667eea;
    font-size: 1.2rem;
}

.month-details ul {
    margin: 0;
    padding-left: 20px;
    line-height: 1.8;
}

.month-details li {
    margin-bottom: 8px;
}

.scripture {
    background: #fff9e6;
    border-left: 4px solid #f39c12;
    padding: 15px;
    margin: 15px 0;
    border-radius: 4px;
    font-style: italic;
}

.scripture-ref {
    font-weight: 600;
    color: #f39c12;
    font-style: normal;
}

@media (max-width: 768px) {
    .season-header h1 {
        font-size: 1.8rem;
    }

    .calendar-table thead th {
        padding: 8px 4px;
        font-size: 0.75rem;
    }

    .calendar-table tbody td {
        padding: 10px 5px;
        font-size: 0.9rem;
    }

    .month-section {
        padding: 15px;
    }
}
