/* Widget planning */
        .planning-widget {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%);
            border: 2px solid #ffd700;
            border-radius: 20px;
            padding: 30px;
            margin: 0 auto 60px;
            max-width: 1000px;
            box-shadow: 0 15px 35px rgba(255, 215, 0, 0.15);
        }

        .widget-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 15px;
        }

        .live-indicator {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(220, 20, 60, 0.2);
            border: 1px solid #dc143c;
            border-radius: 25px;
            font-size: 12px;
            font-weight: 600;
            color: #dc143c;
            text-transform: uppercase;
        }

        .live-dot {
            width: 8px;
            height: 8px;
            background: #dc143c;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.3; }
            100% { opacity: 1; }
        }

        .current-program {
            background: rgba(220, 20, 60, 0.1);
            border: 1px solid rgba(220, 20, 60, 0.3);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 30px;
            text-align: center;
        }

        .current-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 15px;
        }

        .now-playing-details {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .highlight-category {
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .category-studio { background: rgba(75, 192, 192, 0.8); color: white; }
        .category-concert { background: rgba(255, 99, 132, 0.8); color: white; }
        .category-annees { background: rgba(255, 206, 86, 0.8); color: black; }
        .category-history { background: rgba(153, 102, 255, 0.8); color: white; }
        .category-special { background: rgba(255, 159, 64, 0.8); color: white; }

        .current-time-info {
            color: #ffd700;
            font-size: 14px;
        }

        .week-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .day-button {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 12px;
            padding: 12px 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            min-width: 70px;
        }

        .day-button:hover {
            background: rgba(255, 215, 0, 0.1);
            border-color: #ffd700;
        }

        .day-button.active {
            background: #ffd700;
            color: #FFD700;
            border-color: #ffd700;
        }

        .day-button.today {
            border-color: #dc143c;
            background: rgba(220, 20, 60, 0.1);
        }

        .day-name {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 4px;
        }

        .day-date {
            font-size: 16px;
            font-weight: 700;
        }

        .day-stats {
            margin-bottom: 30px;
        }

        .stats-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #ffd700;
            text-align: center;
            margin-bottom: 25px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
            margin-bottom: 30px;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 12px;
            padding: 15px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            background: rgba(255, 215, 0, 0.1);
            transform: translateY(-2px);
        }

        .stat-icon {
            font-size: 1.5rem;
            margin-bottom: 8px;
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: 800;
            color: #ffd700;
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 11px;
            color: #cccccc;
            text-transform: uppercase;
            font-weight: 500;
        }

        .highlights {
            margin-top: 25px;
        }

        .highlights-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #ffd700;
            margin-bottom: 15px;
            text-align: center;
        }

        .highlight-item {
            background: rgba(255, 255, 255, 0.03);
            border-left: 4px solid #dc143c;
            padding: 12px 15px;
            margin-bottom: 10px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .highlight-time {
            color: #ffd700;
            font-weight: 600;
            font-size: 12px;
            min-width: 50px;
        }

        .highlight-title {
            color: #ffffff;
            font-size: 14px;
            flex: 1;
        }

        .highlight-category {
            font-size: 10px;
            padding: 4px 8px;
        }

        .widget-footer {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 215, 0, 0.2);
        }

        .view-full-link {
            color: #ffd700;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .view-full-link:hover {
            color: #ffffff;
        }