/* ======= DASHBOARD GENERAL ======= */
.ax-dashboard {
    padding: 25px;
    color: #E6EEF7;
    font-family: 'Inter', sans-serif;
    border-radius: 24px;
    background-image: linear-gradient(135deg, #08111f 0%, #10213d 45%, #143a52 100%);
    background-size: cover;
    background-repeat: no-repeat;
}

/* ======= HEADER ======= */
.ax-header h1 {
    font-size: 2.2rem;
    margin: 0;
    font-weight: 700;
    color: #12D4C7;
}

.ax-header p {
    margin-top: 5px;
    color: #A5B4C3;
}

/* ======= FILTROS ======= */
.ax-filters {
    /*margin-top: 25px;*/
    display: inline-flex;
    border: 1px solid #1f3a8a;
    gap: 0px;
    align-items: center;
    padding: 4px;
    border-radius: 40px;
    /*flex-wrap: wrap;*/
    background: rgba(255,255,255,0.05);
}

.ax-filter {
    background: transparent;
    border: none;
    color: #1f3a8a;
    padding: 8px 26px;
    font-size: 0.9rem;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.2s ease;
    font-weight: 500;
}
/* Quitar bordes entre botones */
.ax-filter + .ax-filter {
    border-left: 1px solid rgba(31,58,138,0.25);
}

.ax-filter:hover {
    background: rgba(17, 10, 10, 0.44);
    
}

.ax-filter.active {
    background: #12D4C7;
    color: #08111f;
    font-weight: 600;
    border-radius: 30px;
}

.ax-rango-fechas button:hover {
    opacity: 0.9;
}

/* ======= KPI GRID ======= */
.ax-kpi-grid {
    margin-top: 30px;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.ax-kpi-card {
    background: #121826;
    padding: 22px;
    border-radius: 16px;
    border: 1px solid #223049;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.ax-kpi-card label {
    font-size: 0.9rem;
    color: #A5B4C3;
}

.ax-kpi-card span {
    display: block;
    margin-top: 8px;
    font-size: 1.7rem;
    color: #12D4C7;
    font-weight: 600;
}

/* ======= CHART BOX ======= */
.ax-chart-box {
    margin-top: 40px;
    background: #121826;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #223049;
}

.ax-chart-box h3 {
    margin-bottom: 15px;
    color: #12D4C7;
}
.ax-rango-fechas {
    gap: 10px;
    align-items: center;
}
#ax-rango-btn.active {
    background: rgba(255, 255, 255, 0.30);
}

/* === Segunda barra estilo Kommo (usuarios) === */

#ax-user-filters {
    margin-top: 12px;
}

/* Igual que la primera barra */
#ax-user-filters {
    display: inline-flex;
    border: 1px solid #1F3A8A;
    border-radius: 40px;
    padding: 4px;
    gap: 0;
}

/* Botón "Todos" */
#ax-user-filters .ax-filter {
    background: transparent;
    border: none;
    padding: 8px 26px;
    font-size: 0.9rem;
    border-radius: 40px;
    cursor: pointer;
    color: #1F3A8A;
    transition: 0.2s ease;
    font-weight: 500;
}

#ax-user-filters .ax-filter:hover {
    background: rgba(255,255,255,0.15);
}

#ax-user-filters .ax-filter.active {
    background: rgba(255,255,255,0.30);
    color: #1F3A8A;
    font-weight: 600;
}

/* Divisor entre botón y el select */
#ax-user-filters .ax-filter + .ax-select-user-container {
    border-left: 1px solid rgba(31, 58, 138, 0.25);
}

/* Select de usuario (estilo Kommo) */
.ax-select-user-container select {
    background: transparent;
    border: none;
    padding: 8px 20px;
    font-size: 0.9rem;
    color: #1F3A8A;
    border-radius: 40px;
    cursor: pointer;
    outline: none;
}
/* Select de configuracion*/
.ax-config-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #1F3A8A;
    color: #1F3A8A;
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 0.9rem;
    cursor: pointer;
    margin-left: 16px;
    transition: 0.2s ease;
    user-select: none;
}

.ax-config-btn:hover {
    background: rgba(31, 58, 138, 0.08);
}

.ax-config-btn svg {
    opacity: 0.9;
}
.ax-config-panel {
    position: fixed;
    width: 380px;
    background: rgba(255,255,255,0.9);
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.15);
    backdrop-filter: blur(6px);
    z-index: 200;
}

.ax-config-panel.hidden {
    display: none;
}

.ax-config-panel h3 {
    margin-top: 10px;
    margin-bottom: 8px;
    color: #1F3A8A;
}

/* Toggle estilo Kommo */
.ax-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 20px;
}

.ax-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.ax-slider {
    position: absolute;
    cursor: pointer;
    background-color: #ccc;
    border-radius: 20px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: .3s;
}

.ax-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    border-radius: 50%;
    transition: .3s;
}

.ax-switch input:checked + .ax-slider {
    background-color: #1F3A8A;
}

.ax-switch input:checked + .ax-slider:before {
    transform: translateX(24px);
}

/* Backgrounds */
.ax-background-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ax-bg-option {
    position: relative;
    width: 70px;
    height: 50px;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.55);
    transition: .2s;
    appearance: none;
    -webkit-appearance: none;
    padding: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
    overflow: hidden;
}

.ax-bg-option.selected {
    outline: 3px solid #1F3A8A;
    transform: translateY(-1px);
}

.ax-bg-option::after {
    content: "";
    position: absolute;
    left: 6px;
    right: 6px;
    bottom: 6px;
    padding: 2px 6px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-align: center;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.ax-bg-option.selected::after {
    content: "Seleccionado";
    opacity: 1;
    transform: translateY(0);
    background: rgba(8, 17, 31, 0.78);
    color: #f8fafc;
}

.ax-bg-gradient-1 {
    background-image: linear-gradient(135deg, #08111f 0%, #10213d 45%, #143a52 100%);
}

.ax-bg-gradient-2 {
    background-image: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #12d4c7 100%);
}

.ax-bg-gradient-3 {
    background-image: linear-gradient(135deg, #1b1033 0%, #1f3a8a 42%, #0ea5a4 100%);
}

.ax-bg-gradient-4 {
    background-image: linear-gradient(135deg, #111827 0%, #274060 40%, #0f766e 100%);
}

html[data-theme="light"] .ax-bg-option,
body[data-theme="light"] .ax-bg-option {
    border-color: rgba(31,58,138,0.22);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}

html[data-theme="light"] .ax-bg-option.selected::after,
body[data-theme="light"] .ax-bg-option.selected::after {
    background: rgba(255,255,255,0.88);
    color: #1F3A8A;
}


/* === GRID DE WIDGETS === */
.ax-widgets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(150px, auto);
    gap: 18px;
    margin-top: 20px;
}

/* === CELDA VACÍA (para agregar widgets) === */
.ax-widget-empty {
    width: 100%;
    height: 150px;
    border: 2px dashed rgba(0,0,0,0.15);
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    background: rgba(255,255,255,0.05);
    transition: .2s ease;
}

.ax-widget-empty:hover {
    background: rgba(31,58,138,0.08);
    border-color: #1F3A8A;
}

/* === BOTÓN "+" centrado === */
.ax-add-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    color: rgba(0,0,0,0.35);
    border: 2px dashed rgba(0,0,0,0.25);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease;
}

.ax-widget-empty:hover .ax-add-btn {
    border-color: #1F3A8A;
    color: #1F3A8A;
}

/*menu de widgets*/
.ax-widget-menu {
    position: fixed;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    padding: 8px 0;
    width: 220px;
    z-index: 300;
}

.ax-widget-menu.hidden {
    display: none;
}

.ax-widget-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ax-widget-menu li {
    padding: 10px 14px;
    cursor: pointer;
    transition: 0.2s ease;
}

.ax-widget-menu li:hover {
    background: rgba(0,0,0,0.08);
}
.ax-widget {
    width: 100%;
    min-height: 150px;
    background: #0B0F14;
    border-radius: 12px;
    padding: 16px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.ax-widget h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.ax-widget-value {
    font-size: 1.6rem;
    font-weight: bold;
}

.ax-widget-body {
    flex: 1;
    display: flex;
    align-items: stretch;
    width: 100%;
}

.ax-widget-list {
    margin: 0;
    padding-left: 0;
    list-style: none;
    font-size: 0.86rem;
    line-height: 1.45;
    width: 100%;
}

.ax-widget-list li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ax-widget-list-name {
    color: rgba(255,255,255,0.9);
}

.ax-widget-list-value {
    color: #12D4C7;
    font-weight: 700;
}

.ax-widget-list-empty {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
}

.ax-widget-line-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ax-widget-line-head {
    font-size: 1.1rem;
    color: #12D4C7;
    font-weight: 700;
}

.ax-widget-line {
    width: 100%;
    height: 130px;
}

.ax-widget-line-grid {
    stroke: rgba(255,255,255,0.18);
    stroke-width: 1;
}

.ax-widget-line-path {
    fill: none;
    stroke: #12D4C7;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ax-widget-line-dot {
    fill: #1F3A8A;
    stroke: #12D4C7;
    stroke-width: 2;
}

.ax-widget-line-foot {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.75);
}

.ax-size-2x1 {
    grid-column: span 2;
}

.ax-size-1x2 {
    grid-row: span 2;
    min-height: 230px;
}

.ax-size-2x2 {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 230px;
}
/* Modal */
.ax-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    backdrop-filter: blur(3px);
}

.ax-modal.hidden {
    display: none;
}

.ax-modal-content {
    background: #fff;
    padding: 32px;
    border-radius: 18px;
    width: 420px;
    max-width: 95vw;
    box-shadow: 0 24px 60px rgba(0,0,0,0.18);
    transition: background 0.2s, color 0.2s;
    position: relative;
}

.ax-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: nowrap;
    margin-bottom: 24px;
    padding-right: 0;
    min-height: 0;
}

.ax-modal-header h2 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1F3A8A;
    flex: 1 1 auto;
    min-width: 0;
}

.ax-modal-close {
    position: static;
    background: transparent;
    border: none;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    color: #12D4C7;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: none;
    outline: none;
    transition: background 0.15s, color 0.15s, transform 0.15s;
    padding: 0;
    margin-left: auto;
    flex: 0 0 auto;
    align-self: center;
}

.ax-modal-close:hover {
    background: rgba(18,212,199,0.12);
    color: #12D4C7;
    transform: scale(1.05);
}

.ax-modal-close:focus,
.ax-modal-close:active {
    background: rgba(18,212,199,0.12);
    color: #12D4C7;
    outline: none;
    box-shadow: none;
}

.ax-modal-field {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.ax-modal-field label {
    display: block;
    flex: 0 0 150px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b7a99;
    margin-bottom: 0;
}

.ax-modal-field input,
.ax-modal-field select,
.ax-modal-select-wrap,
.ax-modal-static-value {
    width: 100%;
    min-width: 0;
}

.ax-modal-field input,
.ax-modal-field select,
.ax-modal-static-value {
    padding: 10px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 9px;
    font-size: 0.95rem;
    color: #1a2233;
    background: #f8fafc;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    box-sizing: border-box;
    font-family: inherit;
}

.ax-modal-field input:focus,
.ax-modal-field select:focus {
    border-color: #12D4C7;
    box-shadow: 0 0 0 3px rgba(18,212,199,0.18);
    background: #fff;
}

.ax-modal-static-value {
    cursor: default;
    user-select: text;
}

.ax-modal-select-wrap {
    position: relative;
    width: 100%;
}

.ax-modal-field select {
    display: block;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 38px;
    cursor: pointer;
    background-image: linear-gradient(45deg, transparent 50%, #12D4C7 50%), linear-gradient(135deg, #12D4C7 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.ax-modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
    gap: 10px;
}

.ax-modal-actions {
    display: flex;
    gap: 10px;
}

.ax-danger-btn {
    background: #ef4444;
    color: white;
    border: none;
    padding: 9px 16px;
    border-radius: 9px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.ax-danger-btn:hover {
    background: #dc2626;
    transform: translateY(-1px);
}

.ax-cancel-btn {
    background: transparent;
    border: 1.5px solid #d1dae8;
    color: #64748b;
    padding: 9px 18px;
    border-radius: 9px;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    font-family: inherit;
}

.ax-cancel-btn:hover {
    background: #f1f5f9;
    border-color: #b0bcd0;
}

.ax-primary-btn {
    background: #1F3A8A;
    color: white;
    border: none;
    padding: 9px 20px;
    border-radius: 9px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    font-family: inherit;
}

.ax-primary-btn:hover {
    background: #162d6e;
    transform: translateY(-1px);
}

/* Modal — modo oscuro */
html[data-theme="dark"] .ax-modal-content,
body[data-theme="dark"] .ax-modal-content {
    background: #161b22;
    border: 1px solid #1e2d40;
    box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}

html[data-theme="dark"] .ax-modal-header h2,
body[data-theme="dark"] .ax-modal-header h2 {
    color: #12D4C7;
}

html[data-theme="dark"] .ax-modal-close,
body[data-theme="dark"] .ax-modal-close {
    color: #12D4C7;
    background: transparent;
    border: none;
}

html[data-theme="dark"] .ax-modal-close:hover,
body[data-theme="dark"] .ax-modal-close:hover {
    background: rgba(18,212,199,0.12);
    color: #12D4C7;
}

html[data-theme="dark"] .ax-modal-field label,
body[data-theme="dark"] .ax-modal-field label {
    color: #5a7a96;
}

html[data-theme="dark"] .ax-modal-field input,
html[data-theme="dark"] .ax-modal-field select,
html[data-theme="dark"] .ax-modal-static-value,
body[data-theme="dark"] .ax-modal-field input,
body[data-theme="dark"] .ax-modal-field select,
body[data-theme="dark"] .ax-modal-static-value {
    background: #0d1117;
    border-color: #1e2d40;
    color: #e6eef7;
}

html[data-theme="dark"] .ax-modal-field input:focus,
html[data-theme="dark"] .ax-modal-field select:focus,
body[data-theme="dark"] .ax-modal-field input:focus,
body[data-theme="dark"] .ax-modal-field select:focus {
    border-color: #12D4C7;
    box-shadow: 0 0 0 3px rgba(18,212,199,0.12);
    background: #0d1117;
}

html[data-theme="dark"] .ax-cancel-btn,
body[data-theme="dark"] .ax-cancel-btn {
    border-color: #1e2d40;
    color: #a0bcd0;
}

html[data-theme="dark"] .ax-cancel-btn:hover,
body[data-theme="dark"] .ax-cancel-btn:hover {
    background: rgba(255,255,255,0.05);
    border-color: #2a3f58;
}

html[data-theme="dark"] .ax-primary-btn,
body[data-theme="dark"] .ax-primary-btn {
    background: #12D4C7;
    color: #0d1117;
}

html[data-theme="dark"] .ax-primary-btn:hover,
body[data-theme="dark"] .ax-primary-btn:hover {
    background: #0fbdb1;
}

/* Engranaje */

.ax-widget {
    position: relative; /* ← ESTO ES LO QUE FALTABA */
    border-radius: 12px;
    background: #0d0f12;
    padding: 18px;
    color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.ax-widget-settings,
.ax-widget-config {
    position: absolute;
    top: 8px;
    right: 8px;
    cursor: pointer;
    opacity: 0.8;
    transition: 0.2s;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
}

.ax-widget-settings:hover,
.ax-widget-config:hover {
    opacity: 1;
}

.ax-widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 26px;
}

/* ===================================================
   MODO CLARO — widgets con fondo blanco
   =================================================== */
html[data-theme="light"] .ax-dashboard,
body[data-theme="light"] .ax-dashboard {
    color: #1a2233;
}
html[data-theme="light"] .ax-header h1,
body[data-theme="light"] .ax-header h1 {
    color: #1F3A8A;
}
html[data-theme="light"] .ax-header p,
body[data-theme="light"] .ax-header p {
    color: #455A64;
}
html[data-theme="light"] .ax-widget,
body[data-theme="light"] .ax-widget {
    background: #ffffff !important;
    color: #1a2233 !important;
    border: 1px solid #e0e7ef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
html[data-theme="light"] .ax-widget-value,
body[data-theme="light"] .ax-widget-value {
    color: #1F3A8A;
}
html[data-theme="light"] .ax-widget-config,
body[data-theme="light"] .ax-widget-config {
    color: #1F3A8A;
}
html[data-theme="light"] .ax-widget-list-name,
body[data-theme="light"] .ax-widget-list-name {
    color: #333;
}
html[data-theme="light"] .ax-widget-list-value,
body[data-theme="light"] .ax-widget-list-value {
    color: #1F3A8A;
}
html[data-theme="light"] .ax-widget-list li,
body[data-theme="light"] .ax-widget-list li {
    border-color: rgba(0,0,0,0.08);
}
html[data-theme="light"] .ax-widget-list-empty,
body[data-theme="light"] .ax-widget-list-empty {
    color: #555;
}
html[data-theme="light"] .ax-widget-line-head,
body[data-theme="light"] .ax-widget-line-head {
    color: #1F3A8A;
}
html[data-theme="light"] .ax-widget-line-foot,
body[data-theme="light"] .ax-widget-line-foot {
    color: #666;
}
html[data-theme="light"] .ax-widget-line-grid,
body[data-theme="light"] .ax-widget-line-grid {
    stroke: rgba(0,0,0,0.12);
}
html[data-theme="light"] .ax-widget-line-path,
body[data-theme="light"] .ax-widget-line-path {
    stroke: #1F3A8A;
}
html[data-theme="light"] .ax-widget-line-dot,
body[data-theme="light"] .ax-widget-line-dot {
    fill: #12D4C7;
    stroke: #1F3A8A;
}
html[data-theme="light"] .ax-widget-empty,
body[data-theme="light"] .ax-widget-empty {
    border-color: rgba(0,0,0,0.15);
    background: rgba(0,0,0,0.02);
}
html[data-theme="light"] .ax-widget-empty:hover,
body[data-theme="light"] .ax-widget-empty:hover {
    background: rgba(31,58,138,0.05);
    border-color: #1F3A8A;
}
html[data-theme="light"] .ax-add-btn,
body[data-theme="light"] .ax-add-btn {
    color: rgba(0,0,0,0.25);
    border-color: rgba(0,0,0,0.18);
}
html[data-theme="light"] .ax-widget-empty:hover .ax-add-btn,
body[data-theme="light"] .ax-widget-empty:hover .ax-add-btn {
    color: #1F3A8A;
    border-color: #1F3A8A;
}

/* ===================================================
   MODO OSCURO — dashboard (refuerza los estilos base)
   =================================================== */
html[data-theme="dark"] .ax-dashboard,
body[data-theme="dark"] .ax-dashboard {
    color: #E6EEF7;
}
html[data-theme="dark"] .ax-widget,
body[data-theme="dark"] .ax-widget {
    background: #0B0F14 !important;
    color: #e6eef7 !important;
    border: 1px solid #1e2d40;
}
html[data-theme="dark"] .ax-widget-empty,
body[data-theme="dark"] .ax-widget-empty {
    border-color: rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.03);
}
html[data-theme="dark"] .ax-widget-empty:hover,
body[data-theme="dark"] .ax-widget-empty:hover {
    background: rgba(31,58,138,0.15);
    border-color: #1F3A8A;
}
/* Barras de filtros en modo oscuro */
html[data-theme="dark"] .ax-filters,
body[data-theme="dark"] .ax-filters,
html[data-theme="dark"] #ax-user-filters,
body[data-theme="dark"] #ax-user-filters {
    border-color: rgba(18,212,199,0.4);
    background: rgba(255,255,255,0.04);
}
html[data-theme="dark"] .ax-filter:not(.active),
body[data-theme="dark"] .ax-filter:not(.active) {
    color: #a0bcd0;
}
html[data-theme="dark"] .ax-filter + .ax-filter,
body[data-theme="dark"] .ax-filter + .ax-filter {
    border-color: rgba(255,255,255,0.08);
}
html[data-theme="dark"] #ax-user-filters .ax-filter,
body[data-theme="dark"] #ax-user-filters .ax-filter {
    color: #a0bcd0;
}
html[data-theme="dark"] #ax-user-filters .ax-filter.active,
body[data-theme="dark"] #ax-user-filters .ax-filter.active {
    background: #12D4C7;
    color: #08111f;
}
html[data-theme="dark"] .ax-select-user-container select,
body[data-theme="dark"] .ax-select-user-container select {
    color: #a0bcd0;
}
html[data-theme="dark"] .ax-config-btn,
body[data-theme="dark"] .ax-config-btn {
    border-color: rgba(18,212,199,0.4);
    color: #a0bcd0;
}

