/* =========================================
   1. ESTILOS GLOBALES Y BASE
   ========================================= */
body {
    font-family: 'Inter', sans-serif;
    background-color: #0f172a;
    color: #f3f4f6;
    overflow-x: hidden;
}

/* Scrollbars Modernos (Global) */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #1e293b;
}

::-webkit-scrollbar-thumb {
    background: #475569;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.custom-scroll-area::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

/* =========================================
   2. INPUTS Y BOTONES
   ========================================= */
.input-field,
.select-field {
    background-color: #1f2937;
    border: 1px solid #374151;
    color: #f3f4f6;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    transition: all 0.2s;
}

:root {
    --sat: env(safe-area-inset-top, 0px);
    --sab: env(safe-area-inset-bottom, 0px);
    --sal: env(safe-area-inset-left, 0px);
    --sar: env(safe-area-inset-right, 0px);

    /* --- BRANDING VARIABLES (SaaS) --- */
    --brand-primary: #6366f1;
    /* default indigo-500 */
    --brand-primary-hover: #4f46e5;
    /* indigo-600 */
    --brand-primary-rgb: 99, 102, 241;
}

.input-field:focus,
.select-field:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 2px rgba(var(--brand-primary-rgb), 0.2);
}

.input-field:disabled {
    background-color: #374151;
    cursor: not-allowed;
    opacity: 0.6;
}

/* --- Inputs Estilo Burbuja (Para Agente) --- */
.quote-input {
    background: #111827;
    border: 1px solid #374151;
    color: white;
    transition: all 0.2s;
    border-radius: 9999px;
    /* Totalmente redondos */
    padding: 0.5rem 1rem;
}

.quote-input:focus {
    border-color: var(--brand-primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(var(--brand-primary-rgb), 0.2);
}

/* Arreglo para selects con border-radius grande */
select.quote-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.7rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.btn {
    transition: transform 0.1s, background-color 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.btn:active {
    transform: scale(0.96);
}

.btn:disabled {
    background-color: #4b5563;
    cursor: not-allowed;
    transform: none;
    opacity: 0.7;
}

/* =========================================
   3. DISEÑO "BUBBLE" (AGENTE)
   ========================================= */
.bubble-table {
    border-collapse: separate;
    border-spacing: 0 0.6rem;
    /* Espacio entre filas */
    width: 100%;
}

.quote-item-row {
    background-color: rgba(31, 41, 55, 0.6);
    /* Transparencia */
    backdrop-filter: blur(4px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.quote-item-row:hover {
    transform: translateY(-2px) scale(1.005);
    background-color: rgba(31, 41, 55, 0.95);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    border-color: var(--brand-primary);
    /* Brillo al pasar mouse */
    z-index: 10;
    position: relative;
}

/* Bordes redondeados solo en las esquinas de la fila */
.quote-item-row td:first-child {
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
}

.quote-item-row td:last-child {
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.net-price-checkbox {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 0.3rem;
    accent-color: var(--brand-primary);
    cursor: pointer;
}

/* =========================================
   4. DISEÑO "GLASSMORPHISM" (LÍDER)
   ========================================= */
.leader-card {
    background: rgba(31, 41, 55, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(75, 85, 99, 0.4);
    border-radius: 1rem;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.leader-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.3);
    border-color: rgba(var(--brand-primary-rgb), 0.5);
}

.list-bubble {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 0.75rem;
    margin-bottom: 0.5rem;
    transition: all 0.2s;
}

.list-bubble:hover {
    background: rgba(31, 41, 55, 1);
    border-color: var(--brand-primary);
    transform: translateX(2px);
}

/* Pestañas Líder */
.quote-tab {
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.tab-active {
    border-bottom-color: var(--brand-primary) !important;
    color: #fff !important;
    background: rgba(var(--brand-primary-rgb), 0.1);
}

/* =========================================
   5. MODALES Y NOTIFICACIONES
   ========================================= */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #1f2937;
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid #4b5563;
    width: 90%;
    max-width: 800px;
    border-radius: 1rem;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.close-button {
    color: #9ca3af;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close-button:hover {
    color: #ef4444;
}

.notification-dot {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background-color: #ef4444;
    border-radius: 50%;
    border: 2px solid #1f2937;
}

/* Animaciones Toast */
@keyframes toast-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toast-out {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.animate-toast-in {
    animation: toast-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.animate-toast-out {
    animation: toast-out 0.4s ease-in forwards;
}

/* =========================================
   6. LOADER PANTALLA COMPLETA
   ========================================= */
#fullPageLoader {
    transition: opacity 0.3s ease;
    pointer-events: none;
}

#fullPageLoader.show {
    display: flex;
    opacity: 1;
    pointer-events: all;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid var(--brand-primary);
    /* Logo Brand Primary */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* =========================================
   7. ANIMACIONES Y UTILIDADES EXTRA
   ========================================= */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

.is-spinning {
    animation: spin 1s linear infinite;
}

.header-hidden {
    transform: translateY(-120%);
}

header {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Estilos Fichas Técnicas */
.sheets-modal {
    display: none;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(5px);
}

.sheets-content {
    background-color: #1f2937;
    margin: 2% auto;
    padding: 2rem;
    border: 1px solid #4b5563;
    width: 95%;
    max-width: 1400px;
    border-radius: 0.5rem;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
}

.sheets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    padding-top: 1.5rem;
}

.sheet-card {
    background-color: #374151;
    border-radius: 0.75rem;
    overflow: hidden;
    color: #f3f4f6;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    border: 1px solid #4b5563;
}

.sheet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-primary);
}

.sheet-thumbnail {
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
    background-color: #111827;
}

.sheet-card-title {
    padding: 1rem;
    font-weight: 600;
    text-align: center;
    border-top: 1px solid #4b5563;
    background: #1f2937;
}

/* Tablas de Historial */
.history-item {
    transition: all 0.2s;
}

.history-tab {
    cursor: pointer;
}

/* Animación de rebote corto para las reacciones */
@keyframes bounceShort {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25%);
    }
}

.animate-bounce-short {
    animation: bounceShort 0.3s ease-in-out;
    display: inline-block;
}

/* =========================================
   8. MOBILE RESPONSIVE (Capacitor App)
   ========================================= */

/* Safe Area para Notch / Dynamic Island */
/* (Mantenido arriba en la nueva estructura para centralización) */

/* Bottom Navigation Bar */
#mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 45;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(51, 65, 85, 0.6);
    padding-bottom: var(--sab);
}

#mobile-bottom-nav .nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 60px;
    padding: 0 4px;
}

#mobile-bottom-nav .mob-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 6px 8px;
    border-radius: 12px;
    color: #64748b;
    font-size: 10px;
    font-weight: 600;
    transition: all 0.2s;
    min-width: 56px;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    border: none;
    background: none;
}

#mobile-bottom-nav .mob-nav-btn i {
    font-size: 18px;
    transition: all 0.2s;
}

#mobile-bottom-nav .mob-nav-btn.active {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

#mobile-bottom-nav .mob-nav-btn:active {
    transform: scale(0.92);
}

@media (max-width: 1023px) {

    /* Show mobile bottom nav */
    #mobile-bottom-nav {
        display: block;
    }

    /* Adjust body for safe areas */
    body {
        padding-top: var(--sat);
    }

    /* Header adjustments */
    #app-layout>div>header {
        padding-left: max(0.75rem, var(--sal));
        padding-right: max(0.75rem, var(--sar));
    }

    /* View container: leave room for bottom nav */
    #view-container {
        padding-bottom: calc(68px + var(--sab)) !important;
    }

    /* Touch-friendly inputs */
    input,
    select,
    textarea,
    button {
        min-height: 44px;
        font-size: 16px !important;
        /* Prevents iOS zoom */
    }

    /* Small label/badge elements should NOT be 44px */
    .text-\[10px\],
    .text-xs,
    span.rounded-full,
    label,
    p,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    div,
    th,
    td {
        min-height: unset;
        font-size: unset !important;
    }

    /* Re-apply font sizes for text elements */
    input,
    select,
    textarea {
        font-size: 16px !important;
    }

    /* Scrollable tables */
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }

    thead,
    tbody,
    tr {
        display: table;
        width: 100%;
        table-layout: auto;
    }

    /* Bubble table mobile */
    .bubble-table {
        min-width: 600px;
    }

    /* Modals: fullscreen on mobile */
    .modal-content {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        border-radius: 0 !important;
        min-height: 100vh;
        padding-top: calc(1rem + var(--sat));
    }

    /* Right drawer full width */
    #right-drawer {
        width: 100% !important;
    }

    /* Updates panel full width */
    #updates-panel {
        width: 100% !important;
    }

    /* Quote input bubbles smaller padding */
    .quote-input {
        padding: 0.4rem 0.75rem;
    }

    /* Sidebar overlay improvements */
    #sidebar {
        box-shadow: 4px 0 25px rgba(0, 0, 0, 0.5);
    }

    /* Sheets grid fewer columns */
    .sheets-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)) !important;
        gap: 0.75rem !important;
    }

    /* Leader cards stack */
    .leader-card {
        margin-bottom: 0.75rem;
    }

    /* Hide text in header profile on very small screens */
    @media (max-width: 400px) {

        .header-user-name,
        .header-user-avatar+div {
            display: none !important;
        }
    }
}

/* =========================================
   9. SIDEBAR TOGGLE (DESKTOP)
   ========================================= */
@media (min-width: 1024px) {
    #sidebar.is-collapsed {
        transform: translateX(-100%);
        width: 0 !important;
        min-width: 0 !important;
        flex-basis: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
        overflow: hidden;
        border: none !important;
    }

    #view-container.is-expanded {
        left: 0 !important;
    }
}

/* Transiciones suaves para el layout */
#sidebar {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s ease;
}

/* Chat search highlights */
.chat-search-match {
    outline: 2px solid rgba(99, 102, 241, 0.5);
    border-radius: 12px;
}
.chat-search-active {
    outline: 2px solid #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
    border-radius: 12px;
}

#view-container {
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

/* =========================================
   10. DOG RUNNER (RUTERITO) ANIMATION
   ========================================= */
#dog-runner-img {
    transform: scaleX(-1); /* Flips the gif so the dog runs forward/left */
}

#dog-runner-wrapper.active {
    animation: dog-run-marquee 11s linear 3 forwards;
}

@keyframes dog-run-marquee {
    0% {
        left: 100%;
        transform: translate(0, -50%);
    }
    100% {
        left: 0%;
        transform: translate(-100%, -50%);
    }
}

/* ── Dog Runner Color Themes (10 different premium gradients) ── */
.dog-color-1 { background: linear-gradient(135deg, rgba(79, 70, 229, 0.95), rgba(147, 51, 234, 0.95)); border-color: rgba(165, 180, 252, 0.3); }
.dog-color-2 { background: linear-gradient(135deg, rgba(5, 150, 105, 0.95), rgba(13, 148, 136, 0.95)); border-color: rgba(110, 231, 183, 0.3); }
.dog-color-3 { background: linear-gradient(135deg, rgba(217, 119, 6, 0.95), rgba(234, 88, 12, 0.95)); border-color: rgba(253, 230, 138, 0.3); }
.dog-color-4 { background: linear-gradient(135deg, rgba(225, 29, 72, 0.95), rgba(219, 39, 119, 0.95)); border-color: rgba(254, 205, 211, 0.3); }
.dog-color-5 { background: linear-gradient(135deg, rgba(8, 145, 178, 0.95), rgba(37, 99, 235, 0.95)); border-color: rgba(165, 243, 252, 0.3); }
.dog-color-6 { background: linear-gradient(135deg, rgba(124, 58, 237, 0.95), rgba(192, 38, 211, 0.95)); border-color: rgba(216, 180, 254, 0.3); }
.dog-color-7 { background: linear-gradient(135deg, rgba(3, 105, 161, 0.95), rgba(79, 70, 229, 0.95)); border-color: rgba(186, 230, 253, 0.3); }
.dog-color-8 { background: linear-gradient(135deg, rgba(13, 148, 136, 0.95), rgba(22, 163, 74, 0.95)); border-color: rgba(153, 246, 228, 0.3); }
.dog-color-9 { background: linear-gradient(135deg, rgba(192, 38, 211, 0.95), rgba(225, 29, 72, 0.95)); border-color: rgba(245, 208, 254, 0.3); }
.dog-color-10 { background: linear-gradient(135deg, rgba(234, 88, 12, 0.95), rgba(220, 38, 38, 0.95)); border-color: rgba(254, 215, 170, 0.3); }
/* ── Quill Editor - Fichas Técnicas (dark theme) ── */
.tech-quill-editor { background: #0f172a; border-radius: 0 0 8px 8px; }
.tech-quill-editor .ql-editor { min-height: 300px; color: #e2e8f0; font-size: 13px; line-height: 1.7; }
.tech-quill-editor .ql-editor.ql-blank::before { color: #475569; font-style: normal; }
/* Pegada arriba del contenedor con scroll (el panel de Fichas Técnicas es largo) para poder
   seguir formateando texto aunque el cursor esté varias pantallas más abajo del documento. */
.tech-quill-editor .ql-toolbar.ql-snow { background: #1e293b; border: 1px solid #334155; border-radius: 8px 8px 0 0; position: sticky; top: 0; z-index: 5; }
.tech-quill-editor .ql-container.ql-snow { border: 1px solid #334155; border-top: none; border-radius: 0 0 8px 8px; }
/* Modo vista (toolbar oculta con .hidden): el documento pasa a verse como una hoja de lectura
   completa, con sus 4 esquinas redondeadas en vez de "cortado" arriba donde estaba la toolbar. */
.tech-quill-editor .ql-toolbar.ql-snow.hidden + .ql-container.ql-snow { border-top: 1px solid #334155; border-radius: 8px; }
.tech-quill-editor .ql-toolbar .ql-stroke { stroke: #94a3b8; }
.tech-quill-editor .ql-toolbar .ql-fill { fill: #94a3b8; }
.tech-quill-editor .ql-toolbar .ql-picker { color: #94a3b8; }
.tech-quill-editor .ql-toolbar button:hover .ql-stroke,
.tech-quill-editor .ql-toolbar button.ql-active .ql-stroke { stroke: #38bdf8; }
.tech-quill-editor .ql-toolbar button:hover .ql-fill,
.tech-quill-editor .ql-toolbar button.ql-active .ql-fill { fill: #38bdf8; }
.tech-quill-editor .ql-toolbar .ql-picker-label:hover,
.tech-quill-editor .ql-toolbar .ql-picker-item:hover { color: #38bdf8; }
.tech-quill-editor .ql-toolbar .ql-picker-options { background: #1e293b; border-color: #334155; }
.tech-quill-editor .ql-editor h1, .tech-quill-editor .ql-editor h2, .tech-quill-editor .ql-editor h3 { color: #f1f5f9; }
.tech-quill-editor .ql-editor a { color: #38bdf8; }
.tech-quill-editor .ql-editor blockquote { border-left-color: #334155; color: #94a3b8; }
/* Tablas importadas de Word: Quill 2.x las edita nativamente celda por celda (modules.table),
   estas reglas solo les dan el mismo look oscuro que el resto del editor. */
.tech-quill-editor .ql-editor table { border-collapse: collapse; width: 100%; margin: 10px 0; }
.tech-quill-editor .ql-editor td,
.tech-quill-editor .ql-editor th { border: 1px solid #334155; padding: 6px 10px; color: #e2e8f0; vertical-align: top; }
.tech-quill-editor .ql-editor th { background: #1e293b; font-weight: 700; }
.tech-quill-editor .ql-editor tr:nth-child(even) td { background: #131c2e; }

/* ── Quill Editor - Redactar correo (altura acotada, scroll interno) ──
   .tech-quill-editor por sí sola crece libre (pensada para páginas que ya
   scrollean solas, como Fichas Técnicas); acá el editor vive dentro de un
   panel de alto fijo, así que el que debe scrollear es el propio editor, no
   desbordar por debajo de los botones Enviar/Cancelar. */
.compose-quill-editor { display: flex; flex-direction: column; min-height: 0; height: 100%; }
.compose-quill-editor .ql-toolbar.ql-snow { flex-shrink: 0; }
.compose-quill-editor .ql-container.ql-snow { flex: 1 1 auto; min-height: 0; overflow-y: auto; }
/* Selector compuesto (.tech-quill-editor.compose-quill-editor) para tener más
   especificidad que ".tech-quill-editor .ql-editor" y así anular su
   "min-height: 300px" — ese valor fijo es justo lo que forzaba al editor a
   crecer más de lo disponible y empujar el pie fuera de la vista en
   pantallas con poco alto. */
.tech-quill-editor.compose-quill-editor .ql-editor { min-height: 0; height: auto; }

/* ── Campanita de Notificaciones: estado "no leído" ── */
@keyframes bellRing {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(14deg); }
    20% { transform: rotate(-12deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-8deg); }
    50% { transform: rotate(6deg); }
    60% { transform: rotate(-4deg); }
    70%, 100% { transform: rotate(0deg); }
}

#notif-btn.has-unread i.fa-bell {
    animation: bellRing 1.8s ease-in-out infinite;
    animation-delay: 0.5s;
    transform-origin: top center;
    display: inline-block;
}

/* Globo/tooltip "Tienes notificaciones sin leer" */
@keyframes notifHintPop {
    0% { opacity: 0; transform: translateY(-6px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

#notif-hint {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    white-space: nowrap;
    background: #1e293b;
    color: #fde68a;
    border: 1px solid rgba(251, 191, 36, 0.4);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    animation: notifHintPop 0.25s ease-out;
    z-index: 120;
}

#notif-hint::after {
    content: '';
    position: absolute;
    bottom: 100%;
    right: 14px;
    border: 6px solid transparent;
    border-bottom-color: #1e293b;
}

/* Ícono nativo del selector de fecha (calendarito): en Chrome/Edge es negro por defecto y se
   vuelve invisible sobre los fondos oscuros de la app — se invierte a blanco en TODOS los
   input[type="date"], no solo en los de Gerencia que ya lo tenían resuelto puntualmente. */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

#ger-filter-agent,
#ger-filter-line {
    background-color: #0f172a;
}

#ger-filter-agent option,
#ger-filter-line option {
    background-color: #0f172a;
    color: #ffffff;
}
