﻿/* ==========================================
   ENHANCED SCHEDULE TIME VISIBILITY
   ========================================== 
   Apply this CSS to improve time readability
   on both Index.cshtml and Classes.cshtml
   ========================================== */

/* Enhanced Time Display */
.fs-14.id-color {
    font-size: 16px !important; /* Increased from 14px */
    font-weight: 700 !important; /* Make times bold */
    background: linear-gradient(135deg, rgba(200, 155, 60, 0.2), rgba(200, 155, 60, 0.3));
    padding: 6px 16px !important;
    border-radius: 20px !important;
    display: inline-block !important;
    margin-bottom: 10px !important;
    letter-spacing: 0.5px !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 8px rgba(200, 155, 60, 0.2);
}

/* Alternative: Use badge style for times */
.schedule-time-badge {
    background: var(--color-primary, #c89b3c);
    color: #000;
    font-size: 15px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(200, 155, 60, 0.3);
    text-shadow: none;
}

/* Enhanced Schedule Box */
.py-3.bg-dark-3.rounded-1.lh-1-6.text-center {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%) !important;
    border: 1px solid rgba(200, 155, 60, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

    .py-3.bg-dark-3.rounded-1.lh-1-6.text-center:hover {
        transform: translateY(-3px);
        border-color: rgba(200, 155, 60, 0.4);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 20px rgba(200, 155, 60, 0.1);
    }

/* Class Name Enhancement */
.py-3.bg-dark-3 .fs-20.fw-bold {
    font-size: 22px !important;
    margin-bottom: 8px !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Age Group Enhancement */
.py-3.bg-dark-3 .fs-14:not(.id-color) {
    font-size: 15px !important;
    opacity: 0.9;
    font-weight: 500;
}

/* Day Header Enhancement */
.bg-color.text-light.text-center.py-3 {
    background: linear-gradient(135deg, var(--color-primary, #c89b3c) 0%, #e6b355 100%) !important;
    box-shadow: 0 4px 12px rgba(200, 155, 60, 0.3);
    border-bottom: 3px solid rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .fs-14.id-color {
        font-size: 15px !important;
        padding: 5px 14px !important;
    }

    .schedule-time-badge {
        font-size: 14px;
        padding: 6px 14px;
    }

    .py-3.bg-dark-3 .fs-20.fw-bold {
        font-size: 20px !important;
    }
}

/* Print Styles - High Contrast for Printing */
@media print {
    .fs-14.id-color {
        background: #f0f0f0 !important;
        color: #000 !important;
        border: 2px solid #000 !important;
    }

    .py-3.bg-dark-3 {
        background: #ffffff !important;
        border: 2px solid #000 !important;
        color: #000 !important;
    }
}
