body {
    background-color: #f8f9fa;
}

.card {
    border: none;
}

.card .card-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.table thead th {
    background-color: #343a40;
    color: #fff;
}

.table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

.btn {
    border-radius: 0.25rem;
}

.form-group {
    margin-bottom: 1rem;
}
.custom-control-input:checked ~ .custom-control-label::before {
    background-color: #007bff;
    border-color: #007bff;
}

.custom-control-label {
    font-size: 1.2em;
}

.custom-control-input {
    width: 1.5em;
    height: 1.5em;
}

/* ====================================
   ACADEMIES & COACHES SECTION STYLES
   ==================================== */

/* Main Section */
.academies-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Free Class Banner */
.free-class-banner {
    display: inline-block;
}

.badge-success-large {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 12px 30px;
    font-size: 1.2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(40, 167, 69, 0.5);
    }
}

/* Coach Cards */
.coach-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.coach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.coach-icon {
    color: #1e3c72;
    opacity: 0.8;
}

.coach-title {
    font-weight: 600;
    font-size: 1rem;
}

.coach-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.badge-outline-primary {
    background: transparent;
    border: 2px solid #007bff;
    color: #007bff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Program Cards */
.program-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid #007bff;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-left-color: #28a745;
}

/* Level-specific card colors */
.program-card.level-red {
    border-left-color: #dc3545;
}

.program-card.level-red:hover {
    border-left-color: #c82333;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.2);
}

.program-card.level-orange {
    border-left-color: #ff8800;
}

.program-card.level-orange:hover {
    border-left-color: #e67700;
    box-shadow: 0 8px 25px rgba(255, 136, 0, 0.2);
}

.program-card.level-green {
    border-left-color: #28a745;
}

.program-card.level-green:hover {
    border-left-color: #218838;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.2);
}

.program-card.level-competition {
    border-left-color: #ffc107;
}

.program-card.level-competition:hover {
    border-left-color: #e0a800;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.2);
}

.program-card.level-adult {
    border-left-color: #007bff;
}

.program-card.level-adult:hover {
    border-left-color: #0056b3;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.2);
}

.program-icon {
    color: #007bff;
    opacity: 0.9;
}

.program-age {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.program-details {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    text-align: left;
}

.program-details li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #6c757d;
    font-size: 0.95rem;
}

.program-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.1rem;
}

.program-schedule {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px dashed #e9ecef;
    color: #6c757d;
    font-size: 0.95rem;
}

.program-schedule i {
    color: #007bff;
    margin-right: 5px;
}

/* Free Class CTA */
.free-class-cta {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.3);
    color: white;
}

.free-class-cta h4 {
    color: white;
    font-weight: 700;
}

.free-class-cta .text-muted {
    color: rgba(255, 255, 255, 0.9) !important;
}

.free-class-cta .btn-success {
    background: white;
    color: #28a745;
    border: none;
    font-weight: 600;
    padding: 12px 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.free-class-cta .btn-success:hover {
    background: #f8f9fa;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .coach-card {
        margin-bottom: 20px;
    }
    
    .program-card {
        margin-bottom: 20px;
    }
    
    .free-class-cta {
        padding: 20px;
    }
    
    .free-class-cta h4 {
        font-size: 1.3rem;
    }
    
    .badge-success-large {
        font-size: 1rem;
        padding: 10px 20px;
    }
}
