/* Neax SaaS Theme: Clean White & Crimson Red (#d81a3a) */

:root {
    --neax-primary: #d81a3a;
    --neax-primary-hover: #b81430;
    --neax-primary-light: #fff0f3;
    --neax-primary-dark: #9e0e27;
    --neax-text-main: #1f2937;
    --neax-text-muted: #6b7280;
    --neax-sidebar-bg: #ffffff;
    --neax-sidebar-border: #f0f2f5;
    --neax-card-radius: 12px;
}

/* Base styling */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--neax-text-main);
    background-color: #f9fafb;
}

/* Sidebar Custom Styling */
.neax-sidebar {
    background-color: var(--neax-sidebar-bg) !important;
    border-right: 1px solid var(--neax-sidebar-border) !important;
    display: flex;
    flex-direction: column;
    height: 100vh;
    box-shadow: none !important;
}

.neax-sidebar-logo-area {
    padding: 1.25rem 1rem 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.neax-logo-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e50938 0%, #d81a3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    flex-shrink: 0;
}

.neax-company-selector {
    padding: 0.5rem 1rem 1rem 1rem;
    border-bottom: 1px solid var(--neax-sidebar-border);
}

.neax-company-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 700;
    color: #111827;
    text-align: left;
    transition: all 0.2s ease;
}

.neax-company-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

/* Sidebar Menu Items */
.neax-nav-menu {
    padding: 0.75rem 0.5rem;
    flex: 1;
    overflow-y: auto;
}

.neax-sidebar.collapsed .neax-nav-item {
    justify-content: center;
    padding: 0.65rem;
}

.neax-sidebar.collapsed .neax-sidebar-logo-area {
    justify-content: center;
    padding: 1.25rem 0.5rem 0.5rem 0.5rem;
}

.neax-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    margin-bottom: 0.25rem;
    border-radius: 8px;
    color: var(--neax-text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.15s ease;
    cursor: pointer;
}

.neax-nav-item:hover {
    color: var(--neax-primary);
    background-color: var(--neax-primary-light);
}

.neax-nav-item.active {
    color: var(--neax-primary);
    background-color: var(--neax-primary-light);
    font-weight: 700;
}

.neax-nav-item .rz-icon {
    font-size: 20px;
}

/* Sidebar Footer User Area */
.neax-sidebar-footer {
    padding: 0.75rem;
    border-top: 1px solid var(--neax-sidebar-border);
    position: relative;
}

.neax-sunat-banner {
    background: linear-gradient(135deg, #e50938 0%, #d81a3a 100%);
    color: #ffffff;
    border-radius: 10px;
    padding: 0.6rem 0.8rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(216, 26, 58, 0.25);
    font-size: 0.8rem;
    font-weight: 600;
}

.neax-user-pill-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem;
}

.neax-user-info-btn {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.6rem;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: background 0.15s ease;
    background: transparent;
    border: none;
    text-align: left;
}

.neax-user-info-btn:hover {
    background: #f3f4f6;
}

.neax-minimize-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #4b5563;
    transition: all 0.15s ease;
    flex-shrink: 0;
}

.neax-minimize-btn:hover {
    background: #e5e7eb;
    color: #111827;
}

.btn-dots-action {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid #e5e7eb !important;
    background-color: #ffffff !important;
    color: #4b5563 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.btn-dots-action:hover {
    background-color: #f9fafb !important;
    border-color: #d1d5db !important;
    color: #111827 !important;
}

/* Menú Contextual Flotante de Radzen (Screenshot) */
.rz-context-menu {
    background: #ffffff !important;
    border-radius: 10px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid #e5e7eb !important;
    padding: 0.35rem 0 !important;
    min-width: 140px !important;
    z-index: 9999 !important;
}

.rz-context-menu .rz-menuitem {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.rz-context-menu .rz-menuitem-link {
    padding: 0.5rem 1.1rem !important;
    font-size: 0.86rem !important;
    font-weight: 500 !important;
    color: #1f2937 !important;
    display: block !important;
    transition: background-color 0.12s ease, color 0.12s ease !important;
    border-radius: 0 !important;
    text-decoration: none !important;
}

.rz-context-menu .rz-menuitem-link:hover {
    background-color: #f9fafb !important;
    color: #111827 !important;
}

.rz-context-menu .rz-menuitem:last-child .rz-menuitem-link {
    color: #1f2937 !important;
}

.rz-context-menu .rz-menuitem:last-child .rz-menuitem-link:hover {
    background-color: #fef2f2 !important;
    color: #dc2626 !important;
}

/* Evitar recorte en columnas de acciones */
.rz-grid-table td:last-child,
.rz-data-grid-data td:last-child {
    overflow: visible !important;
}

.rz-data-grid, .rz-grid-table-wrapper {
    overflow: visible !important;
}

.header-btn-nueva-venta {
    background-color: #d81a3a;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    border: none;
    border-radius: 8px;
    padding: 0.45rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    transition: background 0.15s ease;
}

.header-btn-nueva-venta:hover {
    background-color: #c11532;
}

/* Header Top Bar & Tabs (Imágenes 1, 2 y 3) */
.neax-top-header-bar {
    background-color: #ffffff;
    border-bottom: 1px solid #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    min-height: 52px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.neax-top-tabs-bar {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.neax-top-tab {
    padding: 1rem 0.25rem 0.85rem 0.25rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: #6b7280;
    cursor: pointer;
    position: relative;
    transition: color 0.15s ease;
    border-bottom: 3px solid transparent;
}

.neax-top-tab:hover {
    color: #111827;
}

.neax-top-tab.active {
    color: #111827;
    border-bottom: 3px solid #d81a3a;
}

.header-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.15s ease;
}

.header-icon-btn:hover {
    background: #f3f4f6;
    color: #111827;
}

.neax-user-popover {
    position: absolute;
    bottom: 4.5rem;
    left: 0.75rem;
    width: 220px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border: 1px solid #e5e7eb;
    padding: 0.5rem 0;
    z-index: 1050;
}

.neax-popover-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    color: #374151;
    font-size: 0.88rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s ease;
}

.neax-popover-item:hover {
    background: #f9fafb;
    color: var(--neax-primary);
}

.neax-popover-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 0.4rem 0;
}

/* Company Selection Screen (Image 1) */
.select-company-screen {
    min-height: 100vh;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.select-company-card {
    width: 100%;
    max-width: 440px;
    background: linear-gradient(135deg, #e50938 0%, #d81a3a 100%);
    color: #ffffff;
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(216, 26, 58, 0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.select-company-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(216, 26, 58, 0.35);
}

/* Mi Cuenta Master-Detail Layout (Images 3 & 4) */
.neax-account-container {
    display: flex;
    background: #ffffff;
    border-radius: 12px;
    min-height: calc(100vh - 5rem);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.neax-account-sidebar {
    width: 320px;
    border-right: 1px solid #f0f2f5;
    padding: 1.5rem 0;
}

.neax-account-content {
    flex: 1;
    padding: 2rem 3rem;
    max-width: 650px;
}

.neax-account-nav-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-left: 3px solid transparent;
    transition: all 0.15s ease;
    text-decoration: none;
    color: inherit;
}

.neax-account-nav-btn:hover {
    background: #fdf2f4;
}

.neax-account-nav-btn.active {
    background: #fdf2f4;
    border-left-color: var(--neax-primary);
}

/* Primary Crimson Red Buttons */
.btn-neax-primary {
    background-color: var(--neax-primary) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    border: none !important;
    transition: background 0.15s ease !important;
}

.btn-neax-primary:hover {
    background-color: var(--neax-primary-hover) !important;
}

/* ========================================================= */
/* TABS SUPERIORES (Mesas, Ventas, Facturación, Cotizaciones) */
/* ========================================================= */
.neax-top-tabs-bar {
    display: flex;
    align-items: center;
    gap: 2rem;
    border-bottom: 1px solid #e5e7eb;
    background-color: #ffffff;
    padding: 0 1.5rem;
}

.neax-top-tab {
    padding: 1rem 0.25rem 0.85rem 0.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #4b5563;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.15s ease;
    text-decoration: none;
}

.neax-top-tab:hover {
    color: var(--neax-primary);
}

.neax-top-tab.active {
    color: #111827;
    font-weight: 800;
    border-bottom-color: var(--neax-primary);
}

/* ========================================================= */
/* GRID DINÁMICO DE MESAS (Imágenes 1, 2, 3)                */
/* ========================================================= */
.mesas-grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem;
}

.mesa-card {
    position: relative;
    border-radius: 14px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    user-select: none;
}

.mesa-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Tamaños de Tarjeta de Mesa */
.mesa-card.mesa-card-sm {
    width: 160px;
    height: 165px;
    padding: 0.85rem;
}

.mesa-card.mesa-card-md {
    width: 200px;
    height: 200px;
    padding: 1.1rem;
}

.mesa-card.mesa-card-lg {
    width: 245px;
    height: 230px;
    padding: 1.25rem;
}

/* Estados de Mesa */
.mesa-card.mesa-card-empty {
    background-color: #e5e7eb;
    border: 1px solid #d1d5db;
}

.mesa-card.mesa-card-occupied {
    background-color: #f0fdf4;
    border: 2px solid #22c55e;
}

.mesa-card.mesa-card-new {
    background-color: #e5e7eb;
    border: 2px dashed #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mesa-card.mesa-card-new:hover {
    border-color: var(--neax-primary);
    background-color: var(--neax-primary-light);
}

/* Botón Circular de Menú Contextual (⌄) */
.mesa-menu-circle-btn {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    cursor: pointer;
    transition: background 0.15s ease;
    z-index: 10;
}

.mesa-menu-circle-btn:hover {
    background-color: rgba(0, 0, 0, 0.08);
}

/* Menú Popover Contextual de Mesa (Imágenes 2 y 3) */
.mesa-context-menu {
    position: absolute;
    top: 2.8rem;
    right: 0.85rem;
    width: 170px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
    padding: 0.35rem 0;
    z-index: 100;
}

.mesa-context-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.9rem;
    color: #374151;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
}

.mesa-context-item:hover {
    background-color: #f9fafb;
    color: var(--neax-primary);
}

.mesa-context-item.danger {
    color: #dc2626;
}

.mesa-context-item.danger:hover {
    background-color: #fef2f2;
}

/* Badges centrales de Mesa */
.mesa-badge-empty {
    background-color: #111827;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.35rem 0.9rem;
    border-radius: 6px;
    display: inline-block;
    align-self: flex-start;
}

.mesa-badge-occupied {
    background-color: #16a34a;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    display: inline-block;
    align-self: flex-start;
}

/* Barra de Escenario Inferior (Matching Imagen 1) */
.scenario-footer-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: transparent;
    margin-top: auto;
}

.scenario-badge-btn {
    padding: 0.35rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #4b5563;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.scenario-badge-btn:hover {
    background-color: #f9fafb;
}

.scenario-badge-btn.active {
    border-color: #d81a3a;
    color: #d81a3a;
    font-weight: 700;
}

/* ========================================================= */
/* MODAL ADMINISTRAR MESAS (Imagen 4)                       */
/* ========================================================= */
.size-selector-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.size-preview-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #ffffff;
    transition: all 0.15s ease;
    min-width: 90px;
}

.size-preview-card:hover {
    border-color: #9ca3af;
}

.size-preview-card.active {
    border: 2px solid #22c55e !important;
    background-color: #ffffff;
}

.size-preview-card.active .size-preview-label {
    color: #16a34a !important;
    font-weight: 700 !important;
}

.size-preview-box {
    background-color: #e5e7eb;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.size-preview-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #4b5563;
}

/* ========================================================= */
/* POS RESPONSIVE & MOBILE ENHANCEMENTS                      */
/* ========================================================= */

/* Badge circular de cantidad agregada al carrito (Imágenes 1 y 3) */
.product-cart-count-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #1f2937;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Stepper de cantidad con unidad (Imagen 2) */
.qty-stepper-container {
    display: flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background-color: #ffffff;
    padding: 2px;
}

.qty-stepper-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    color: #4b5563;
    width: 24px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-stepper-btn:hover {
    background-color: #f3f4f6;
    border-radius: 4px;
}

.qty-stepper-value {
    font-size: 0.82rem;
    font-weight: 700;
    color: #111827;
    padding: 0 4px;
    min-width: 44px;
    text-align: center;
    line-height: 1.1;
}

.qty-stepper-unit {
    font-size: 0.65rem;
    color: #9ca3af;
    display: block;
    text-transform: uppercase;
}

/* Barra flotante verde inferior en Móvil (Imagen 3) */
.mobile-cart-floating-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 54px;
    background-color: #16a34a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.25rem;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    cursor: pointer;
    transition: background 0.15s ease;
}

.mobile-cart-floating-bar:hover {
    background-color: #15803d;
}

/* Helpers de visibilidad responsiva y ajuste de pantalla */
.main-body-content {
    padding: 0;
    min-height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pos-container {
    height: 100vh !important;
    max-height: 100vh !important;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin: 0 !important;
}

@media (max-width: 767px) {
    .desktop-only-view {
        display: none !important;
    }
    .mobile-only-view {
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
        max-height: 100% !important;
        overflow: hidden !important;
    }
    .main-body-content {
        padding: 0 !important;
    }
    .pos-container {
        margin: 0 !important;
        height: calc(100vh - 52px) !important;
        max-height: calc(100vh - 52px) !important;
    }
}

@media (min-width: 768px) {
    .mobile-only-view {
        display: none !important;
    }
    .desktop-only-view {
        display: flex !important;
        height: 100% !important;
        max-height: 100% !important;
        overflow: hidden !important;
    }
}

/* Radzen Switch in Brand Red (#d81a3a) - Crisp, Sharp & High Contrast (Matching Reference) */
:root {
    --rz-switch-width: 34px;
    --rz-switch-height: 18px;
    --rz-switch-circle-width: 14px;
    --rz-switch-circle-height: 14px;
    --rz-switch-background-color: #d1d5db;
    --rz-switch-checked-background-color: #d81a3a;
    --rz-switch-circle-background-color: #ffffff;
    --rz-switch-border-radius: 9px;
}

.rz-switch {
    width: 34px !important;
    min-width: 34px !important;
    max-width: 34px !important;
    height: 18px !important;
    min-height: 18px !important;
    max-height: 18px !important;
    border-radius: 9px !important;
    background-color: #d1d5db !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.08) !important;
    position: relative !important;
    display: inline-block !important;
    cursor: pointer !important;
    vertical-align: middle !important;
    overflow: hidden !important;
    opacity: 1 !important;
}

.rz-switch:hover:not(.rz-state-disabled):not(.rz-switch-checked) {
    background-color: #9ca3af !important;
}

.rz-switch .rz-switch-circle {
    width: 14px !important;
    height: 14px !important;
    border-radius: 50% !important;
    background-color: #ffffff !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.28), 0 1px 1px rgba(0, 0, 0, 0.15) !important;
    position: absolute !important;
    top: 2px !important;
    left: 2px !important;
    margin: 0 !important;
    transform: none !important;
    transition: left 0.15s ease-in-out, background-color 0.15s ease !important;
}

.rz-switch.rz-switch-checked {
    background-color: #d81a3a !important;
    box-shadow: none !important;
}

.rz-switch.rz-switch-checked:hover {
    background-color: #b81430 !important;
}

.rz-switch.rz-switch-checked .rz-switch-circle {
    left: 18px !important;
    transform: none !important;
    background-color: #ffffff !important;
}

.rz-switch:disabled, .rz-switch.rz-state-disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
}

/* Grilla Compacta y Elegante de Configuraciones (Matching Imagen 1 de Referencia) */
.neax-config-table {
    border: 1px solid #e5e7eb !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    background-color: #ffffff !important;
    box-shadow: none !important;
}

.neax-config-table .rz-grid-table {
    width: 100% !important;
    border-collapse: collapse !important;
}

.neax-config-table .rz-grid-table thead th {
    background-color: #ffffff !important;
    border-bottom: 1px solid #e5e7eb !important;
    border-right: 1px solid #e5e7eb !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    color: #111827 !important;
    padding: 0.5rem 0.75rem !important;
    text-transform: none !important;
    letter-spacing: 0.1px !important;
    text-align: center !important;
}

.neax-config-table .rz-grid-table thead th:last-child {
    border-right: none !important;
}

.neax-config-table .rz-grid-table thead th .rz-column-title {
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    color: #111827 !important;
    text-align: center !important;
    width: 100% !important;
    display: inline-block !important;
}

.neax-config-table .rz-grid-table tbody td {
    padding: 0.25rem 0.75rem !important;
    border-bottom: 1px solid #f3f4f6 !important;
    border-right: none !important;
    font-size: 0.80rem !important;
    height: 34px !important;
    vertical-align: middle !important;
    color: #1f2937 !important;
}

.neax-config-table .rz-grid-table tbody tr:hover td {
    background-color: #f9fafb !important;
}

.neax-config-table .rz-grid-table tbody tr:last-child td {
    border-bottom: none !important;
}

/* Flag / Badge "Default" estilo píldora oscura pequeña */
.neax-default-badge {
    background-color: #1f2937 !important;
    color: #ffffff !important;
    font-size: 0.62rem !important;
    font-weight: 700 !important;
    padding: 0.1rem 0.35rem !important;
    border-radius: 3px !important;
    letter-spacing: 0.3px !important;
    line-height: 1.2 !important;
    display: inline-flex !important;
    align-items: center !important;
    margin-left: 0.45rem !important;
    text-transform: uppercase !important;
}




