/* commandes-basiques — styles page (migration DA, ne pas dupliquer la coque) */

.command-card {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.3s ease;
        }

        .command-card:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
        }

        .status-active {
            background: linear-gradient(135deg, #10b981, #059669);
        }

        .status-inactive {
            background: linear-gradient(135deg, #ef4444, #dc2626);
        }

        .global-badge {
            background: linear-gradient(135deg, #8b5cf6, #7c3aed);
            font-size: 10px;
            padding: 4px 8px;
            border-radius: 12px;
            text-transform: uppercase;
            font-weight: 700;
        }

        .input-field.border-red-500 {
            border-color: #ef4444 !important;
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
        }

        .input-field.border-red-500:focus {
            border-color: #ef4444 !important;
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2) !important;
        }

        .category-badge {
            font-size: 10px;
            padding: 4px 8px;
            border-radius: 12px;
            text-transform: uppercase;
            font-weight: 700;
        }

        .category-badge.moderation {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
        }

        .category-badge.viewers {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: white;
        }

        /* Toggle module Commandes basiques */
        .module-toggle {
            position: relative;
            width: 90px;
            height: 36px;
            border-radius: 18px;
            background: #374151;
            border: 1px solid rgba(255,255,255,0.15);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            padding: 4px;
            transition: all 0.25s ease;
        }
        .module-toggle.on {
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            box-shadow: 0 8px 20px rgba(255, 107, 53, 0.35);
        }
        .module-toggle .thumb {
            width: 28px;
            height: 28px;
            background: white;
            border-radius: 14px;
            transform: translateX(0);
            transition: transform 0.25s ease;
            box-shadow: 0 4px 10px rgba(0,0,0,0.25);
        }
        .module-toggle.on .thumb {
            transform: translateX(54px);
        }
        .module-toggle .labels {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 10px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            color: rgba(255,255,255,0.85);
            pointer-events: none;
        }
