/* =========================================================
   WOLFOZ OTT PANEL - FILAMENT NATIVE THEME ENHANCEMENTS
   Clean Utilities (Light & Dark Mode Compatible)
   ========================================================= */

/* --- Scrollbar Moderna --- */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(156, 163, 175, 0.4);
    border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(156, 163, 175, 0.7);
}

/* --- Botón de Copiado Interactivo para Datos Bancarios --- */
.btn-copy-chip {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #d97706;
    font-size: 0.75rem;
    padding: 3px 9px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.15s ease;
    font-weight: 600;
}

.dark .btn-copy-chip {
    background: rgba(245, 158, 11, 0.18);
    border-color: rgba(245, 158, 11, 0.4);
    color: #fbbf24;
}

.btn-copy-chip:hover {
    background: rgba(245, 158, 11, 0.25);
    transform: translateY(-1px);
}

.dark .btn-copy-chip:hover {
    background: rgba(245, 158, 11, 0.35);
}

/* --- WHATSAPP PILL BUTTON --- */
.wa-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #15803d;
    padding: 2px 8px;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s ease;
    text-decoration: none;
}

.dark .wa-pill-btn {
    color: #4ade80;
    background: rgba(34, 197, 94, 0.18);
    border-color: rgba(34, 197, 94, 0.45);
}

.wa-pill-btn:hover {
    background: rgba(34, 197, 94, 0.25);
    border-color: #22c55e;
    transform: translateY(-1px);
}

/* --- TARJETAS DE PAQUETES DE STREAMING (Toggle Labels) --- */
.streaming-pack-card {
    border-radius: 12px;
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.streaming-pack-card:hover {
    transform: translateY(-2px);
}

.streaming-pack-card img {
    transition: transform 0.2s ease;
}

.streaming-pack-card:hover img {
    transform: scale(1.06);
}

/* =========================================================
   TARJETAS BANCARIAS - 100% LIGHT & DARK MODE COMPATIBLE
   ========================================================= */
.bank-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 0.75rem;
}

.bank-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.bank-card:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.bank-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bank-card-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 9999px;
    display: inline-block;
}

.badge-emerald {
    background-color: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.badge-red {
    background-color: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.badge-sky {
    background-color: #f0f9ff;
    color: #0369a1;
    border: 1px solid #bae6fd;
}

.bank-box {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 14px;
}

.bank-box-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin-bottom: 4px;
}

.bank-box-value {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 0.03em;
}

.bank-field-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid #f1f5f9;
}

.bank-field-row:last-child {
    border-bottom: none;
}

.bank-field-label {
    color: #64748b;
    font-weight: 500;
}

.bank-field-val {
    color: #0f172a;
    font-weight: 600;
}

.bank-btn-copy {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    background-color: #fef3c7;
    border: 1px solid #fcd34d;
    color: #b45309;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.bank-btn-copy:hover {
    background-color: #fde68a;
    color: #92400e;
    transform: translateY(-1px);
}

.bank-btn-copy-sm {
    padding: 3px 8px;
    font-size: 0.75rem;
}

/* =========================================================
   DARK MODE ADAPTATIONS (.dark)
   ========================================================= */
.dark .bank-card {
    background-color: #1e1e24 !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4) !important;
}

.dark .bank-card:hover {
    border-color: rgba(245, 158, 11, 0.4) !important;
}

.dark .bank-card-title {
    color: #ffffff !important;
}

.dark .bank-box {
    background-color: #141418 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.dark .bank-box-label {
    color: #9ca3af !important;
}

.dark .bank-box-value {
    color: #f9fafb !important;
}

.dark .bank-field-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.dark .bank-field-label {
    color: #9ca3af !important;
}

.dark .bank-field-val {
    color: #f9fafb !important;
}

.dark .bank-btn-copy {
    background-color: rgba(245, 158, 11, 0.18) !important;
    border: 1px solid rgba(245, 158, 11, 0.4) !important;
    color: #fbbf24 !important;
}

.dark .bank-btn-copy:hover {
    background-color: rgba(245, 158, 11, 0.3) !important;
    border-color: rgba(245, 158, 11, 0.6) !important;
}

.dark .badge-emerald {
    background-color: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.3);
}

.dark .badge-red {
    background-color: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border-color: rgba(239, 68, 68, 0.3);
}

.dark .badge-sky {
    background-color: rgba(14, 165, 233, 0.15);
    color: #38bdf8;
    border-color: rgba(14, 165, 233, 0.3);
}

/* =========================================================
   OTT SCANNER - CAMERA VIEWFINDER & DROPZONE
   ========================================================= */
.ott-cam-box {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: #000000;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ott-cam-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ott-cam-reticle {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 2px solid #f59e0b;
    border-radius: 16px;
    box-shadow: 0 0 0 4000px rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

.ott-cam-reticle::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: #fbbf24;
    box-shadow: 0 0 8px #f59e0b;
    animation: ott-scan-line 2s infinite linear;
}

@keyframes ott-scan-line {
    0% { top: 0; }
    50% { top: 100%; }
    100% { top: 0; }
}

.ott-drop-area {
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 22px 16px;
    text-align: center;
    cursor: pointer;
    background: #f9fafb;
    max-width: 460px;
    margin: 0 auto;
    transition: all 0.2s ease;
}

.ott-drop-area svg {
    width: 44px !important;
    height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;
    margin: 0 auto 8px auto !important;
    display: block !important;
}

.ott-drop-area:hover, .ott-drop-area.dragover {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.05);
}

.dark .ott-drop-area {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.02);
}

.dark .ott-drop-area:hover, .dark .ott-drop-area.dragover {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.08);
}

.ott-cam-box {
    position: relative;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    height: 240px;
    background-color: #000000;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ott-cam-box svg {
    width: 44px !important;
    height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;
    margin: 0 auto 8px auto !important;
    display: block !important;
}

/* =========================================================
   MIS CLIENTES - FORMATO NATIVO LARAVEL FILAMENT (LIGHT & DARK)
   ========================================================= */

.clients-cards-container {
    padding: 1rem;
}

@media (min-width: 640px) {
    .clients-cards-container {
        padding: 1.25rem;
    }
}

.clients-cards-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .clients-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1280px) {
    .clients-cards-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1600px) {
    .clients-cards-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* --- Card Base --- */
.client-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.15s ease-in-out;
}

.client-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
}

.dark .client-card {
    background-color: #18181b !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25) !important;
}

.dark .client-card:hover {
    border-color: rgba(245, 158, 11, 0.4) !important;
}

/* --- Card Header --- */
.client-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.client-card-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.client-avatar {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    background-color: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #111827;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dark .client-avatar {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #f9fafb !important;
}

.client-card-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.25;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dark .client-card-name {
    color: #f9fafb !important;
}

.client-card-id {
    font-size: 0.75rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    color: #6b7280;
    margin-top: 2px;
}

.dark .client-card-id {
    color: #9ca3af !important;
}

/* --- Status Badges --- */
.client-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 9px;
    border-radius: 9999px;
    font-size: 0.72rem;
    font-weight: 600;
    flex-shrink: 0;
}

.client-status-badge .status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: currentColor;
}

.status-active {
    background-color: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.dark .status-active {
    background-color: rgba(16, 185, 129, 0.12) !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
    color: #34d399 !important;
}

.status-expired {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.dark .status-expired {
    background-color: rgba(239, 68, 68, 0.12) !important;
    border: 1px solid rgba(239, 68, 68, 0.3) !important;
    color: #f87171 !important;
}

.status-suspended {
    background-color: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
}

.dark .status-suspended {
    background-color: rgba(245, 158, 11, 0.12) !important;
    border: 1px solid rgba(245, 158, 11, 0.3) !important;
    color: #fbbf24 !important;
}

.status-forced {
    background-color: #fef2f2;
    border: 1px solid #f87171;
    color: #7f1d1d;
}

.dark .status-forced {
    background-color: rgba(220, 38, 38, 0.15) !important;
    border: 1px solid rgba(220, 38, 38, 0.35) !important;
    color: #fca5a5 !important;
}

/* --- Card Body / Specs --- */
.client-card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.client-spec-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 6px;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.82rem;
}

.dark .client-spec-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.client-spec-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.spec-label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 0.8rem;
}

.dark .spec-label {
    color: #9ca3af !important;
}

.spec-value {
    color: #111827;
    font-weight: 600;
}

.dark .spec-value {
    color: #f3f4f6 !important;
}

/* --- Connection Badges --- */
.badge-conn-active {
    background-color: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #111827;
    padding: 2px 8px;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.dark .badge-conn-active {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
    color: #f3f4f6 !important;
}

.badge-conn-max {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    padding: 2px 8px;
    border-radius: 0.375rem;
    font-size: 0.73rem;
    font-weight: 500;
}

.dark .badge-conn-max {
    background-color: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    color: #9ca3af !important;
}

/* --- Packs Row & Badges --- */
.client-packs-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
    margin-top: 2px;
}

.badge-pack-no-xxx {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: #fff1f2;
    border: 1px solid #fecdd3;
    color: #e11d48;
    padding: 2px 8px;
    border-radius: 0.375rem;
    font-size: 0.72rem;
    font-weight: 600;
}

.dark .badge-pack-no-xxx {
    background-color: rgba(244, 63, 94, 0.12) !important;
    border-color: rgba(244, 63, 94, 0.3) !important;
    color: #fb7185 !important;
}

.badge-pack-xxx {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: #faf5ff;
    border: 1px solid #e9d5ff;
    color: #9333ea;
    padding: 2px 8px;
    border-radius: 0.375rem;
    font-size: 0.72rem;
    font-weight: 600;
}

.dark .badge-pack-xxx {
    background-color: rgba(168, 85, 247, 0.12) !important;
    border-color: rgba(168, 85, 247, 0.3) !important;
    color: #c084fc !important;
}

.badge-pack-mini {
    padding: 2px 7px;
    border-radius: 0.375rem;
    font-size: 0.7rem;
    font-weight: 600;
    background-color: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #374151;
}

.dark .badge-pack-mini {
    background-color: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #d1d5db !important;
}

/* --- Card Actions / Buttons --- */
.client-card-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 2px;
}

.btn-card-renew {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: #f59e0b;
    border: 1px solid #d97706;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 14px;
    border-radius: 0.5rem;
    cursor: pointer;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.15s ease;
    outline: none;
}

.btn-card-renew:hover {
    background-color: #d97706;
}

.btn-card-renew:active {
    transform: translateY(1px);
}

.btn-card-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    color: #16a34a;
    width: 38px;
    height: 36px;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.btn-card-wa:hover {
    background-color: #f0fdf4;
    border-color: #bbf7d0;
}

.dark .btn-card-wa {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #4ade80 !important;
}

.dark .btn-card-wa:hover {
    background-color: rgba(34, 197, 94, 0.15) !important;
    border-color: rgba(34, 197, 94, 0.3) !important;
}

.client-quick-actions {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
}

.btn-quick-action {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    position: relative;
}

.btn-quick-action svg {
    transition: transform 0.15s ease;
}

.btn-quick-action:hover svg {
    transform: scale(1.12);
}

.btn-quick-action:active {
    transform: scale(0.96);
}

/* 1. Contraseña (Ámbar / Oro) */
.btn-quick-action.btn-qa-pass {
    background-color: #fffbeb;
    border-color: #fde68a;
    color: #d97706;
}
.btn-quick-action.btn-qa-pass:hover {
    background-color: #fef3c7;
    border-color: #f59e0b;
    color: #b45309;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}

/* 2. Suspender (Rojo / Rose) */
.btn-quick-action.btn-qa-suspend {
    background-color: #fef2f2;
    border-color: #fecaca;
    color: #dc2626;
}
.btn-quick-action.btn-qa-suspend:hover {
    background-color: #fee2e2;
    border-color: #ef4444;
    color: #b91c1c;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.2);
}

/* 2b. Reactivar (Esmeralda / Verde) */
.btn-quick-action.btn-qa-reactivate {
    background-color: #ecfdf5;
    border-color: #a7f3d0;
    color: #059669;
}
.btn-quick-action.btn-qa-reactivate:hover {
    background-color: #d1fae5;
    border-color: #10b981;
    color: #047857;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

/* 3. Dispositivo OTT TV (Cielo / Cyan) */
.btn-quick-action.btn-qa-ott {
    background-color: #f0f9ff;
    border-color: #bae6fd;
    color: #0284c7;
}
.btn-quick-action.btn-qa-ott:hover {
    background-color: #e0f2fe;
    border-color: #0ea5e9;
    color: #0369a1;
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.2);
}

/* 4. Cobro MP / Flow (Violeta / Púrpura) */
.btn-quick-action.btn-qa-pay {
    background-color: #faf5ff;
    border-color: #e9d5ff;
    color: #9333ea;
}
.btn-quick-action.btn-qa-pay:hover {
    background-color: #f3e8ff;
    border-color: #a855f7;
    color: #7e22ce;
    box-shadow: 0 2px 8px rgba(168, 85, 247, 0.2);
}

/* 5. Editar (Índigo / Azul) */
.btn-quick-action.btn-qa-edit {
    background-color: #eef2ff;
    border-color: #c7d2fe;
    color: #4f46e5;
}
.btn-quick-action.btn-qa-edit:hover {
    background-color: #e0e7ff;
    border-color: #6366f1;
    color: #4338ca;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
}

/* MODO OSCURO (.dark) - Estética premium translúcida con acentos armónicos */
.dark .btn-quick-action {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
}

.dark .btn-quick-action.btn-qa-pass {
    background-color: rgba(245, 158, 11, 0.09) !important;
    border-color: rgba(245, 158, 11, 0.25) !important;
    color: #fbbf24 !important;
}
.dark .btn-quick-action.btn-qa-pass:hover {
    background-color: rgba(245, 158, 11, 0.22) !important;
    border-color: rgba(245, 158, 11, 0.5) !important;
    color: #fef08a !important;
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.3) !important;
    transform: translateY(-1px);
}

.dark .btn-quick-action.btn-qa-suspend {
    background-color: rgba(244, 63, 94, 0.09) !important;
    border-color: rgba(244, 63, 94, 0.25) !important;
    color: #fb7185 !important;
}
.dark .btn-quick-action.btn-qa-suspend:hover {
    background-color: rgba(244, 63, 94, 0.22) !important;
    border-color: rgba(244, 63, 94, 0.5) !important;
    color: #fecdd3 !important;
    box-shadow: 0 0 12px rgba(244, 63, 94, 0.3) !important;
    transform: translateY(-1px);
}

.dark .btn-quick-action.btn-qa-reactivate {
    background-color: rgba(16, 185, 129, 0.09) !important;
    border-color: rgba(16, 185, 129, 0.25) !important;
    color: #34d399 !important;
}
.dark .btn-quick-action.btn-qa-reactivate:hover {
    background-color: rgba(16, 185, 129, 0.22) !important;
    border-color: rgba(16, 185, 129, 0.5) !important;
    color: #a7f3d0 !important;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.3) !important;
    transform: translateY(-1px);
}

.dark .btn-quick-action.btn-qa-ott {
    background-color: rgba(14, 165, 233, 0.09) !important;
    border-color: rgba(14, 165, 233, 0.25) !important;
    color: #38bdf8 !important;
}
.dark .btn-quick-action.btn-qa-ott:hover {
    background-color: rgba(14, 165, 233, 0.22) !important;
    border-color: rgba(14, 165, 233, 0.5) !important;
    color: #bae6fd !important;
    box-shadow: 0 0 12px rgba(14, 165, 233, 0.3) !important;
    transform: translateY(-1px);
}

.dark .btn-quick-action.btn-qa-pay {
    background-color: rgba(168, 85, 247, 0.09) !important;
    border-color: rgba(168, 85, 247, 0.25) !important;
    color: #c084fc !important;
}
.dark .btn-quick-action.btn-qa-pay:hover {
    background-color: rgba(168, 85, 247, 0.22) !important;
    border-color: rgba(168, 85, 247, 0.5) !important;
    color: #f3e8ff !important;
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.3) !important;
    transform: translateY(-1px);
}

.dark .btn-quick-action.btn-qa-edit {
    background-color: rgba(99, 102, 241, 0.09) !important;
    border-color: rgba(99, 102, 241, 0.25) !important;
    color: #818cf8 !important;
}
.dark .btn-quick-action.btn-qa-edit:hover {
    background-color: rgba(99, 102, 241, 0.22) !important;
    border-color: rgba(99, 102, 241, 0.5) !important;
    color: #e0e7ff !important;
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.3) !important;
    transform: translateY(-1px);
}

/* View switcher toolbar */
.view-switcher-pill {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 2px;
    background-color: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
}

.dark .view-switcher-pill {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.view-switcher-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 0.375rem;
    font-size: 0.78rem;
    font-weight: 500;
    transition: all 0.15s ease;
    cursor: pointer;
    border: none;
    color: #6b7280;
    background: transparent;
}

.view-switcher-btn:hover {
    color: #111827;
}

.dark .view-switcher-btn {
    color: #9ca3af;
}

.dark .view-switcher-btn:hover {
    color: #ffffff;
}

.view-switcher-btn.active {
    background-color: #ffffff;
    color: #111827;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    font-weight: 600;
}

.dark .view-switcher-btn.active {
    background-color: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}



