    /* Styles supplémentaires spécifiques à index.php */
        .radio-player-section {
            margin-bottom: 40px;
        }
        
        .radio-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 200px; /* Ajustez selon vos besoins */
}

        
        .radio-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #c62828, #8e0000);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            flex-shrink: 0;
        }
        .radio-text img.cc_streaminfo {
    display: block;
    margin: 0 auto 10px auto;
}

.radio-text span.cc_streaminfo {
    display: block;
    margin-top: 10px;
}
        
        .radio-text h3 {
            color: white;
            margin-bottom: 5px;
            font-size: 1.5rem;
        }
        
        .radio-text p {
            color: #757575;
            margin-bottom: 0;
        }
        
        .player-mode-switch {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
            justify-content: center;
        }
        
        .mode-btn {
            padding: 8px 20px;
            background-color: #2d2d2d;
            color: #757575;
            border: 1px solid #424242;
            border-radius: 20px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .mode-btn.active {
            background-color: #c62828;
            color: white;
            border-color: #c62828;
        }
        
        .mode-btn:hover {
            background-color: #424242;
            color: white;
        }
        
        .player-container {
            background: linear-gradient(135deg, #121212, #1e1e1e);
            border-radius: 15px;
            padding: 25px;
            color: white;
            box-shadow: 0 10px 30px rgba(198, 40, 40, 0.2);
            margin-bottom: 40px;
            border: 1px solid #c62828;
            position: relative;
            overflow: hidden;
        }
        
        .player-container:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #c62828, #ef5350);
        }
        
        .live-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: #d32f2f;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            animation: pulse 2s infinite;
        }
        
        .music-player-card {
            background: linear-gradient(135deg, #121212, #1e1e1e);
            border-radius: 15px;
            padding: 25px;
            color: white;
            box-shadow: 0 10px 30px rgba(198, 40, 40, 0.2);
            margin-bottom: 40px;
            border: 1px solid #c62828;
            position: relative;
            overflow: hidden;
        }
        
        .music-player-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #c62828, #ef5350);
        }
        
        .player-with-image {
            display: flex;
            align-items: center;
            gap: 25px;
            margin-bottom: 20px;
        }
        
        .player-image {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 10px;
            border: 3px solid #c62828;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .default-player-image {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #c62828, #8e0000);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            border: 3px solid #c62828;
        }
        
        .player-info {
            flex-grow: 1;
        }
        
        .now-playing-title {
            font-size: 1.8rem;
            color: white;
            margin-bottom: 5px;
            font-weight: 700;
        }
        
        .now-playing-artist {
            font-size: 1.2rem;
            color: #ef5350;
            margin-bottom: 10px;
        }
        
        .now-playing-badge {
            background: linear-gradient(135deg, #c62828, #8e0000);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            display: inline-block;
        }
        
        .player-controls-radio {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin: 25px 0;
        }
        
        .player-btn-radio {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            background: #2d2d2d;
            color: white;
            font-size: 22px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            cursor: pointer;
        }
        
        .player-btn-radio:hover {
            background: #c62828;
            transform: scale(1.1);
            box-shadow: 0 6px 12px rgba(198, 40, 40, 0.4);
        }
        
        .play-btn-radio {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #c62828, #8e0000);
            font-size: 28px;
        }
        
        .play-btn-radio:hover {
            background: linear-gradient(135deg, #8e0000, #c62828);
        }
        
        /* Styles pour les boutons stop */
        .stop-btn {
            background: #424242 !important;
            color: white !important;
        }
        
        .stop-btn:hover {
            background: #c62828 !important;
            transform: scale(1.1);
            box-shadow: 0 6px 12px rgba(198, 40, 40, 0.4);
        }
        
        .progress-container-radio {
            margin: 20px 0;
        }
        
        .progress-radio {
            height: 10px;
            background-color: #2d2d2d;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        .progress-bar-radio {
            height: 100%;
            background: linear-gradient(90deg, #c62828, #ef5350);
            border-radius: 5px;
            transition: width 0.3s ease;
            position: relative;
        }
        
        .time-display {
            display: flex;
            justify-content: space-between;
            color: #757575;
            font-size: 0.9rem;
            margin-top: 5px;
        }
        
        .volume-control-radio {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 20px;
        }
        
        .volume-slider-radio {
            width: 150px;
           
            height: 6px;
            background: #2d2d2d;
            border-radius: 3px;
            outline: none;
        }
        
        .volume-slider-radio::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 20px;
            height: 20px;
            background: #c62828;
            border-radius: 50%;
            cursor: pointer;
            border: 2px solid white;
        }
        
        .volume-slider-radio::-moz-range-thumb {
            width: 20px;
            height: 20px;
            background: #c62828;
            border-radius: 50%;
            cursor: pointer;
            border: 2px solid white;
        }
        
        .player-status {
            font-size: 0.9rem;
            color: #757575;
            margin-top: 10px;
            text-align: center;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(198, 40, 40, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(198, 40, 40, 0); }
            100% { box-shadow: 0 0 0 0 rgba(198, 40, 40, 0); }
        }
        
        .section-title {
            color: #c62828;
            font-size: 1.8rem;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #c62828;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, #c62828, transparent);
        }

        /* Styles pour le popup radio */
        .radio-popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 9999;
            justify-content: center;
            align-items: center;
        }

        .radio-popup {
            background: linear-gradient(135deg, #121212, #1e1e1e);
            border-radius: 20px;
            width: 90%;
            max-width: 500px;
            color: white;
            border: 2px solid #c62828;
            box-shadow: 0 15px 40px rgba(198, 40, 40, 0.3);
            position: relative;
            overflow: hidden;
        }

        .radio-popup-header {
            background: linear-gradient(90deg, #c62828, #ef5350);
            padding: 20px;
            text-align: center;
            position: relative;
        }

        .radio-popup-header h3 {
            margin: 0;
            font-size: 1.5rem;
            font-weight: bold;
            color: white;
        }

        .close-popup-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: transparent;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .close-popup-btn:hover {
            transform: scale(1.2);
        }

        .radio-popup-body {
            padding: 30px;
        }

        .popup-radio-info {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }

        .popup-radio-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #c62828, #8e0000);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            flex-shrink: 0;
        }

        .popup-radio-text h4 {
            color: white;
            margin-bottom: 5px;
            font-size: 1.3rem;
        }

        .popup-radio-text p {
            color: #757575;
            margin-bottom: 0;
        }

        .popup-player-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 25px 0;
        }

        .popup-player-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            background: #2d2d2d;
            color: white;
            font-size: 22px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            cursor: pointer;
        }

        .popup-player-btn:hover {
            background: #c62828;
            transform: scale(1.1);
            box-shadow: 0 6px 12px rgba(198, 40, 40, 0.4);
        }

        .popup-play-btn {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #c62828, #8e0000);
            font-size: 28px;
        }

        .popup-play-btn:hover {
            background: linear-gradient(135deg, #8e0000, #c62828);
        }

        .popup-volume-control {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 20px;
        }

        .popup-volume-slider {
            width: 100%;
        
            height: 6px;
            background: #2d2d2d;
            border-radius: 3px;
            outline: none;
        }

        .popup-volume-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 20px;
            height: 20px;
            background: #c62828;
            border-radius: 50%;
            cursor: pointer;
            border: 2px solid white;
        }

        .popup-current-track {
            margin-top: 25px;
            padding: 15px;
            background-color: rgba(45, 45, 45, 0.5);
            border-radius: 10px;
            border-left: 4px solid #c62828;
        }

        .popup-current-track h5 {
            color: #c62828;
            font-size: 1rem;
            margin-bottom: 10px;
        }

        .popup-track-info {
            font-size: 1.1rem;
            color: white;
        }

        .popup-footer {
            display: flex;
            justify-content: space-between;
            margin-top: 25px;
            padding-top: 15px;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #757575;
        }

        .open-popup-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #c62828, #8e0000);
            color: white;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(198, 40, 40, 0.4);
            transition: all 0.3s ease;
        }

        .open-popup-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(198, 40, 40, 0.6);
        }

        .popup-live-badge {
            display: inline-block;
            background-color: #d32f2f;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-left: 10px;
            animation: pulse 2s infinite;
        }

        @media (max-width: 768px) {
            .radio-popup {
                width: 95%;
                margin: 20px;
            }
            
            .popup-radio-info {
                flex-direction: column;
                text-align: center;
            }
            
            .open-popup-btn {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
        }
        body {
            background-color: #121212;
            color: #f5f5f5;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .admin-header {
            background: linear-gradient(135deg, #121212 0%, #000000 100%);
            color: white;
            padding: 20px 0;
            margin-bottom: 30px;
            border-bottom: 3px solid #c62828;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        
        .admin-card {
            background-color: #1e1e1e;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            margin-bottom: 20px;
            border: 1px solid #424242;
        }
        
        .form-section {
            background-color: #1e1e1e;
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
            border: 1px solid #424242;
        }
        
        .form-section h3 {
            color: #c62828;
            border-bottom: 2px solid #c62828;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        
        .form-control-admin {
            background-color: #2d2d2d;
            border: 1px solid #424242;
            color: #f5f5f5;
            padding: 10px 15px;
            border-radius: 6px;
        }
        
        .form-control-admin:focus {
            background-color: #2d2d2d;
            border-color: #c62828;
            color: #f5f5f5;
            box-shadow: 0 0 0 0.25rem rgba(198, 40, 40, 0.25);
        }
        
        .btn-admin-primary {
            background: linear-gradient(135deg, #c62828, #8e0000);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-admin-primary:hover {
            background: linear-gradient(135deg, #8e0000, #c62828);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(198, 40, 40, 0.4);
        }
        
        .btn-admin-secondary {
            background-color: #2d2d2d;
            color: #f5f5f5;
            border: 1px solid #424242;
            padding: 8px 16px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        
        .btn-admin-secondary:hover {
            background-color: #424242;
            border-color: #c62828;
        }
        
        .btn-admin-warning {
            background-color: #ff9800;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        
        .btn-admin-warning:hover {
            background-color: #f57c00;
            transform: translateY(-2px);
        }
        
        .btn-admin-danger {
            background-color: #d32f2f;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        
        .btn-admin-danger:hover {
            background-color: #b71c1c;
            transform: translateY(-2px);
        }
        
        .btn-admin-success {
            background-color: #388e3c;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        
        .btn-admin-success:hover {
            background-color: #2e7d32;
            transform: translateY(-2px);
        }
        
        .table-admin {
            background-color: #1e1e1e;
            color: #f5f5f5;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .table-admin thead {
            background: linear-gradient(135deg, #c62828, #8e0000);
        }
        
        .table-admin thead th {
            border: none;
            color: white;
            font-weight: 600;
            padding: 15px;
        }
        
        .table-admin tbody tr {
            background-color: #2d2d2d;
            border-bottom: 1px solid #424242;
        }
        
        .table-admin tbody tr:nth-child(even) {
            background-color: #1e1e1e;
        }
        
        .table-admin tbody tr:hover {
            background-color: rgba(198, 40, 40, 0.1);
        }
        
        .admin-info-card {
            background: linear-gradient(135deg, #1e1e1e, #2d2d2d);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            border-left: 5px solid #c62828;
        }
        
        .logout-form {
            display: inline;
        }
        
        .alert-admin {
            border-radius: 8px;
            border: none;
            padding: 15px;
            margin-bottom: 20px;
        }
        
        .alert-success-admin {
            background-color: rgba(76, 175, 80, 0.1);
            color: #4caf50;
            border-left: 4px solid #4caf50;
        }
        
        .alert-danger-admin {
            background-color: rgba(198, 40, 40, 0.1);
            color: #ef5350;
            border-left: 4px solid #c62828;
        }
        
        .alert-warning-admin {
            background-color: rgba(255, 152, 0, 0.1);
            color: #ff9800;
            border-left: 4px solid #ff9800;
        }
        
        .action-buttons {
            display: flex;
            gap: 5px;
        }
        
        .badge-admin {
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .badge-new {
            background-color: #4caf50;
            color: white;
        }
        
        .badge-updated {
            background-color: #ff9800;
            color: white;
        }
        
        .badge-with-image {
            background-color: #2196f3;
            color: white;
        }
        
        .badge-no-image {
            background-color: #757575;
            color: white;
        }
        
        .modal-content-admin {
            background-color: #1e1e1e;
            color: #f5f5f5;
            border: 1px solid #424242;
        }
        
        .modal-header-admin {
            border-bottom: 1px solid #424242;
        }
        
        .modal-footer-admin {
            border-top: 1px solid #424242;
        }
        
        .btn-close-white {
            filter: invert(1) grayscale(100%) brightness(200%);
        }
        
        .tab-content {
            padding: 20px 0;
        }
        
        .nav-tabs-admin {
            border-bottom: 2px solid #424242;
        }
        
        .nav-tabs-admin .nav-link {
            color: #f5f5f5;
            background-color: #2d2d2d;
            border: 1px solid #424242;
            margin-right: 5px;
            border-radius: 6px 6px 0 0;
        }
        
        .nav-tabs-admin .nav-link.active {
            background-color: #c62828;
            color: white;
            border-color: #c62828;
        }
        
        .nav-tabs-admin .nav-link:hover {
            border-color: #c62828;
            background-color: rgba(198, 40, 40, 0.2);
        }
        
        .music-image-preview {
            max-width: 200px;
            max-height: 150px;
            object-fit: cover;
            border-radius: 5px;
            margin-top: 10px;
            border: 2px solid #424242;
        }
        
        .music-image-thumb {
            width: 50px;
            height: 50px;
            object-fit: cover;
            border-radius: 4px;
        }
        
        .default-image-placeholder {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #c62828, #8e0000);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        
        .upload-info {
            background-color: rgba(198, 40, 40, 0.1);
            border: 1px solid rgba(198, 40, 40, 0.3);
            border-radius: 6px;
            padding: 10px;
            margin-top: 10px;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        
        .stat-card {
            background-color: #2d2d2d;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            border-top: 4px solid #c62828;
        }
        
        .stat-card .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #c62828;
            margin-bottom: 5px;
        }
        
        .stat-card .stat-label {
            color: #757575;
            font-size: 0.9rem;
        }
        
        .image-type-badge {
            font-size: 0.7rem;
            padding: 2px 6px;
            border-radius: 3px;
            margin-left: 5px;
        }
        
        .image-type-upload {
            background-color: #2196f3;
            color: white;
        }
        
        .image-type-url {
            background-color: #4caf50;
            color: white;
        }
        
        .image-preview-container {
            position: relative;
            display: inline-block;
            margin-right: 10px;
            margin-bottom: 10px;
        }
        
        .image-delete-btn {
            position: absolute;
            top: -5px;
            right: -5px;
            width: 20px;
            height: 20px;
            background-color: #d32f2f;
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
        }
        
        .image-options {
            background-color: #2d2d2d;
            border: 1px solid #424242;
            border-radius: 6px;
            padding: 15px;
            margin-top: 10px;
        }
        
        .form-check-input:checked {
            background-color: #c62828;
            border-color: #c62828;
        }
        
        .image-source-toggle {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }
        
        .image-source-toggle button {
            flex: 1;
            padding: 8px;
            border: 1px solid #424242;
            background-color: #2d2d2d;
            color: #757575;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .image-source-toggle button.active {
            background-color: #c62828;
            color: white;
            border-color: #c62828;
        }
        
        .image-upload-area {
            border: 2px dashed #424242;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 15px;
        }
        
        .image-upload-area:hover {
            border-color: #c62828;
            background-color: rgba(198, 40, 40, 0.05);
        }
        
        .image-upload-area.dragover {
            border-color: #4caf50;
            background-color: rgba(76, 175, 80, 0.1);
        }
        
        .image-preview-large {
            max-width: 300px;
            max-height: 200px;
            object-fit: contain;
            border-radius: 8px;
            margin: 10px auto;
            display: block;
        }
        
        .genre-distribution {
            margin-top: 20px;
        }
        
        .genre-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
            padding: 5px 10px;
            background-color: #2d2d2d;
            border-radius: 4px;
        }
        
        .genre-bar {
            flex-grow: 1;
            height: 8px;
            background-color: #424242;
            border-radius: 4px;
            margin: 0 10px;
            overflow: hidden;
        }
        
        .genre-fill {
            height: 100%;
            background-color: #c62828;
        }
        .music-player-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #2a1a1a 100%);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 30px;
            border: 1px solid #c62828;
            box-shadow: 0 5px 15px rgba(198, 40, 40, 0.2);
        }
        
        .player-with-image {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            gap: 20px;
        }
        
        #player-image-container {
            position: relative;
            width: 120px;
            height: 120px;
            flex-shrink: 0;
        }
        
        .player-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
            border: 2px solid #c62828;
        }
        
        .default-player-image {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #2c2c2c 0%, #3c2c2c 100%);
            border-radius: 10px;
            border: 2px solid #c62828;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: #c62828;
        }
        
        .player-info {
            flex-grow: 1;
        }
        
        .now-playing-title {
            font-size: 1.4rem;
            font-weight: bold;
            color: #fff;
            margin-bottom: 5px;
        }
        
        .now-playing-artist {
            font-size: 1.1rem;
            color: #bbb;
            margin-bottom: 10px;
        }
        
        .now-playing-badge {
            display: inline-block;
            background: #c62828;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
        }
        
        .music-player-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin: 20px 0;
        }
        
        .music-control-btn {
            background: transparent;
            border: 2px solid #c62828;
            color: #c62828;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .music-control-btn:hover {
            background: #c62828;
            color: white;
            transform: scale(1.1);
        }
        
        .music-control-btn.play-btn {
            width: 60px;
            height: 60px;
            font-size: 1.5rem;
        }
        
        .music-progress-container {
            margin: 20px 0;
        }
        
        .music-time-display {
            display: flex;
            justify-content: space-between;
            color: #bbb;
            font-size: 0.9rem;
            margin-bottom: 5px;
        }
        
        .music-progress {
            height: 6px;
            background: #333;
            border-radius: 3px;
            overflow: hidden;
            cursor: pointer;
        }
        
        .music-progress-bar {
            height: 100%;
            background: #c62828;
            width: 0%;
            border-radius: 3px;
            transition: width 0.1s linear;
        }
        
        .music-volume-control {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 15px;
        }
        
        .music-volume-slider {
            flex-grow: 1;
            height: 4px;
            -webkit-appearance: none;
            appearance: none;
            background: #333;
            border-radius: 2px;
            outline: none;
        }
        
        .music-volume-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 16px;
            height: 16px;
            background: #c62828;
            border-radius: 50%;
            cursor: pointer;
        }
        
        .music-player-status {
            text-align: center;
            color: #bbb;
            font-size: 0.9rem;
            margin-top: 10px;
        }
        
        /* Styles pour les boutons play sur les musiques */
        .play-overlay-btn {
            background: rgba(198, 40, 40, 0.9);
            border: none;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(10px);
        }
        
        .music-item-image:hover .play-overlay-btn {
            opacity: 1;
            transform: translateY(0);
        }
        
        .play-overlay-btn:hover {
            background: #e53935;
            transform: scale(1.1);
        }
        
        .btn-play-item {
            background: #c62828;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }
        
        .btn-play-item:hover {
            background: #e53935;
            transform: translateY(-2px);
        }
        
        .btn-play-item.playing {
            background: #4caf50;
        }
        
        .btn-play-item.playing:hover {
            background: #66bb6a;
        }
        
        /* Styles pour la section radio */
        .radio-player-section {
            margin-bottom: 30px;
        }
        
        .mode-separator {
            text-align: center;
            margin: 30px 0;
            color: #bbb;
            font-size: 1.1rem;
            position: relative;
        }
        
        .mode-separator:before,
        .mode-separator:after {
            content: "";
            position: absolute;
            top: 50%;
            width: 40%;
            height: 1px;
            background: #333;
        }
        
        .mode-separator:before {
            left: 0;
        }
        
        .mode-separator:after {
            right: 0;
        }
        .programme-section {
            margin-bottom: 40px;
        }
        
        .programme-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .emission-en-cours {
            background: linear-gradient(135deg, #c62828 0%, #e53935 100%);
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 25px;
            border-left: 5px solid #ff9800;
        }
        
        .emission-en-cours .badge {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            font-size: 0.8rem;
            padding: 4px 10px;
            margin-bottom: 10px;
        }
        
        .emission-en-cours h5 {
            color: white;
            margin-bottom: 5px;
        }
        
        .emission-en-cours p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 5px;
            font-size: 0.9rem;
        }
        
        .emission-en-cours .animateur {
            color: #ffcc80;
            font-weight: bold;
        }
        
        .jour-programme {
            background: #1a1a1a;
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 15px;
            border-left: 3px solid #c62828;
        }
        
        .jour-titre {
            color: #c62828;
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #333;
        }
        
        .emission-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid #2a2a2a;
        }
        
        .emission-item:last-child {
            border-bottom: none;
        }
        
        .emission-info {
            flex-grow: 1;
        }
        
        .emission-heure {
            color: #c62828;
            font-weight: bold;
            min-width: 100px;
            text-align: right;
        }
        
        .emission-titre {
            color: white;
            font-weight: bold;
            margin-bottom: 3px;
        }
        
        .emission-animateur {
            color: #bbb;
            font-size: 0.9rem;
            margin-bottom: 3px;
        }
        
        .emission-desc {
            color: #888;
            font-size: 0.85rem;
        }
        
        .categorie-badge {
            display: inline-block;
            background: rgba(198, 40, 40, 0.2);
            color: #c62828;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 0.75rem;
            margin-top: 5px;
        }
        
        .programme-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }
        
        .jour-btn {
            background: #2a2a2a;
            border: 1px solid #333;
            color: #bbb;
            padding: 8px 15px;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .jour-btn:hover,
        .jour-btn.active {
            background: #c62828;
            color: white;
            border-color: #c62828;
        }
        
        .programme-container {
            max-height: 600px;
            overflow-y: auto;
            padding-right: 10px;
        }
        
        .programme-container::-webkit-scrollbar {
            width: 6px;
        }
        
        .programme-container::-webkit-scrollbar-track {
            background: #1a1a1a;
            border-radius: 3px;
        }
        
        .programme-container::-webkit-scrollbar-thumb {
            background: #c62828;
            border-radius: 3px;
        }
        
        .no-programme {
            text-align: center;
            padding: 40px 20px;
            color: #888;
        }
        
        .no-programme i {
            font-size: 3rem;
            margin-bottom: 15px;
            color: #444;
        }
        /* Navigation Programme - Version 2 colonnes */
.programme-nav {
    margin: 25px 0 30px 0;
    padding: 0 15px;
}

.jour-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 colonnes */
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.jour-btn {
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    border: 2px solid #333;
    color: #ddd;
    padding: 16px 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.jour-btn:hover {
    background: linear-gradient(145deg, #333, #282828);
    border-color: #444;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.jour-btn.active {
    background: linear-gradient(145deg, #c62828, #b71c1c);
    color: white;
    border-color: #c62828;
    box-shadow: 0 6px 15px rgba(198, 40, 40, 0.4);
    transform: translateY(-2px);
}

.jour-btn.active:hover {
    background: linear-gradient(145deg, #d32f2f, #c62828);
    box-shadow: 0 8px 20px rgba(198, 40, 40, 0.5);
}

/* Effet de brillance sur les boutons actifs */
.jour-btn.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.7s;
}

.jour-btn.active:hover::before {
    left: 100%;
}

/* Sur très petits écrans (iPhone SE) */
@media (max-width: 375px) {
    .jour-grid {
        gap: 10px;
    }
    
    .jour-btn {
        padding: 14px 10px;
        font-size: 0.95rem;
        min-height: 55px;
        border-radius: 10px;
    }
}

/* Sur écrans moyens (tablettes) */
@media (min-width: 768px) and (max-width: 991px) {
    .jour-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 colonnes */
        max-width: 800px;
        gap: 15px;
    }
    
    .jour-btn {
        padding: 18px 15px;
        font-size: 1.05rem;
        min-height: 65px;
        border-radius: 15px;
    }
}

/* Sur grands écrans (desktop) */
@media (min-width: 992px) {
    .jour-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        max-width: 1000px;
    }
    
    .jour-btn {
        min-width: 100px;
        flex: 0 0 auto;
        padding: 12px 15px;
        border-radius: 25px;
        font-size: 0.95rem;
        min-height: 45px;
    }
}

/* Pour les très grands écrans */
@media (min-width: 1200px) {
    .jour-grid {
        gap: 20px;
    }
    
    .jour-btn {
        min-width: 150px;
        padding: 18px 30px;
    }
}

/* Animation lors du changement de jour */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(198, 40, 40, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(198, 40, 40, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(198, 40, 40, 0);
    }
}

.jour-btn.active.new-selection {
    animation: pulse 0.6s ease;
}

/* Indicateur de jour actuel */
.jour-btn.today {
    position: relative;
}

.jour-btn.today::after {
    content: '•';
    position: absolute;
    top: 5px;
    right: 5px;
    color: #4caf50;
    font-size: 1rem;
    text-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
}

/* Version avec icônes (optionnel) */
.jour-btn.with-icon {
    flex-direction: column;
    gap: 5px;
}

.jour-btn.with-icon i {
    font-size: 1.2rem;
    margin-bottom: 2px;
    opacity: 0.8;
}

.jour-btn.active.with-icon i {
    opacity: 1;
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Pour les écrans en mode paysage */
@media (max-height: 500px) and (orientation: landscape) {
    .programme-nav {
        margin: 15px 0 20px 0;
    }
    
    .jour-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    
    .jour-btn {
        min-height: 50px;
        padding: 12px 8px;
    }
}

/* Version ultra compacte pour petits espaces */
.jour-btn.compact {
    padding: 8px 12px;
    min-height: 40px;
    font-size: 0.9rem;
    border-radius: 8px;
}

.jour-btn.compact:hover {
    transform: translateY(-1px);
}

/* Option : Afficher en ligne sur desktop mais plus serré */
@media (min-width: 992px) {
    .jour-btn.compact-desktop {
        min-width: 90px;
        padding: 10px 12px;
        font-size: 0.9rem;
        min-height: 40px;
        border-radius: 15px;
    }
    
    .jour-grid.compact-grid {
        gap: 8px;
        max-width: 800px;
    }
}

