/* Schedule Section Styles */
.schedule-section {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.schedule-section h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Schedule Container */
.schedule-container {
    display: grid;
    gap: 1.5rem;
}

.schedule-empty {
    text-align: center;
    padding: 2rem;
    color: #7f8c8d;
}

.schedule-empty i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

/* Schedule Group */
.schedule-group {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.schedule-group-header {
    padding: 1rem;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.schedule-group-header.group-kids {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
}

.schedule-group-header.group-teens {
    background: linear-gradient(135deg, #4ECDC4 0%, #6FE7DE 100%);
}

.schedule-group-header.group-adults {
    background: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%);
}

.schedule-group-header.group-athletes {
    background: linear-gradient(135deg, #FFD93D 0%, #FFE66D 100%);
    color: #2c3e50;
}

.schedule-group-body {
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

/* Schedule Day */
.schedule-day {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 1rem;
    border-left: 4px solid #3498db;
}

.schedule-day-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.schedule-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Schedule Item */
.schedule-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 4px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.schedule-item:hover {
    border-color: #3498db;
    background: #ecf0f1;
}

.schedule-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #3498db;
    flex-shrink: 0;
}

.schedule-item label {
    flex: 1;
    cursor: pointer;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.9rem;
}

.schedule-item.checked {
    background: #e8f4f8;
    border-color: #3498db;
}

.schedule-item.checked label {
    color: #3498db;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .schedule-section {
        padding: 1rem;
    }

    .schedule-group-body {
        grid-template-columns: 1fr;
    }

    .schedule-day {
        padding: 0.75rem;
    }

    .schedule-item {
        padding: 0.5rem;
    }
}
