/* Overrides CSS pour Letau Enquêtes - Thème spécifique */
        
        .letau-header-status {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px;
            background: #f5f5f5;
            border-radius: 5px;
            margin: 10px 0;
        }
        
        .letau-subscription-badge {
            background: #4CAF50;
            color: white;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: bold;
        }
        
        .letau-subscription-badge.inactive {
            background: #f44336;
        }
        
        .letau-popular-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .letau-popular-card {
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        
        .letau-popular-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .letau-free-badge {
            background: #2196F3;
            color: white;
            padding: 2px 6px;
            border-radius: 10px;
            font-size: 11px;
            font-weight: bold;
        }
        
        .letau-premium-badge {
            background: #FF9800;
            color: white;
            padding: 2px 6px;
            border-radius: 10px;
            font-size: 11px;
            font-weight: bold;
        }
        
        /* Boutons spécifiques au thème */
        .letau-btn {
            display: inline-block;
            padding: 10px 20px;
            background: #142ea4;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        
        .letau-btn:hover {
            background: #0e2177;
            color: white;
        }
        
        .letau-btn-secondary {
            background: #d30b0b;
        }
        
        .letau-btn-secondary:hover {
            background: #a00808;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .letau-popular-grid {
                grid-template-columns: 1fr;
            }
            
            .letau-header-status {
                flex-direction: column;
                align-items: flex-start;
            }
        }