/* Schedule Page Custom Styles */

.schedule-container { background: #f8fafc; padding: 100px 0; }

.section-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.01);
    margin-bottom: 80px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}


.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 45px;
    position: relative;
    padding-bottom: 25px;
}

.category-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #1a237e, #6366f1);
    border-radius: 2px;
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    color: #1a237e;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-right: 25px;
    box-shadow: 0 8px 15px rgba(99, 102, 241, 0.1);
}

.category-header.intl .category-icon {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    color: #7c3aed;
    box-shadow: 0 8px 15px rgba(124, 58, 237, 0.1);
}

.category-header.intl::after {
    background: linear-gradient(90deg, #7c3aed, #a855f7);
}

.category-info h2 { 
    font-size: 34px; 
    font-weight: 800; 
    color: #0f172a; 
    margin: 0; 
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.category-info p { color: #64748b; margin: 5px 0 0; font-size: 17px; font-weight: 500; }


.custom-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.custom-table th {
    padding: 20px 25px;
    text-align: left;
    color: #475569;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 2px solid #f1f5f9;
}
.custom-table tr td {
    padding: 30px 25px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
    transition: all 0.2s ease;
}
.custom-table tr:hover td { background: rgba(99, 102, 241, 0.03); }
.custom-table tr:last-child td { border-bottom: none; }


.loc-wrapper { display: flex; align-items: center; }
.loc-marker {
    width: 12px;
    height: 12px;
    background: #1a237e;
    border-radius: 50%;
    margin-right: 15px;
    box-shadow: 0 0 0 4px rgba(26, 35, 126, 0.1);
}
.loc-name { font-size: 20px; font-weight: 700; color: #1e293b; margin: 0; letter-spacing: -0.3px; }


.date-box { display: flex; align-items: center; color: #475569; }
.date-box i { font-size: 18px; margin-right: 10px; color: #6366f1; }

.status-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}
.tag-upcoming { background: #dcfce7; color: #15803d; }
.tag-completed { background: #f1f5f9; color: #64748b; }
.tag-tbd { background: #fef9c3; color: #854d0e; }

.empty-state { text-align: center; padding: 60px; color: #94a3b8; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-card { padding: 30px 20px; }
    .category-header { flex-direction: column; text-align: center; }
    .category-icon { margin-right: 0; margin-bottom: 20px; }
    .custom-table th { display: none; }
    .custom-table tr td { display: block; width: 100%; border: none; padding: 10px 20px; text-align: center; }
    .custom-table tr td:first-child { padding-top: 30px; }
    .custom-table tr td:last-child { padding-bottom: 30px; border-bottom: 1px solid #f1f5f9; }
    .loc-wrapper { justify-content: center; }
    .date-box { justify-content: center; }
}
