:root {
    --bg: #f5f7fb;
    --bg-alt: #eef4ff;
    --surface: rgba(255, 255, 255, 0.72);
    --surface-strong: rgba(255, 255, 255, 0.92);
    --border: rgba(148, 163, 184, 0.22);
    --text: #0f172a;
    --muted: #64748b;
    --primary: #0f766e;
    --primary-strong: #115e59;
    --brand-blue: #11439b;
    --brand-blue-hover: #0d357a;
    --accent: #f59e0b;
    --accent-2: #fb7185;
    --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
    --radius-xl: 24px;
    --radius-lg: 18px;
}

[data-theme="dark"] {
    --bg: #07111e;
    --bg-alt: #0f172a;
    --surface: rgba(15, 23, 42, 0.72);
    --surface-strong: rgba(15, 23, 42, 0.94);
    --border: rgba(148, 163, 184, 0.14);
    --text: #e2e8f0;
    --muted: #94a3b8;
    --shadow: 0 20px 60px rgba(2, 6, 23, 0.5);
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.12), transparent 28%),
        radial-gradient(circle at right top, rgba(17, 94, 89, 0.18), transparent 26%),
        linear-gradient(180deg, var(--bg-alt), var(--bg));
    color: var(--text);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

body {
    margin: 0;
}

a {
    text-decoration: none;
}

.glass-card,
.glass-modal,
.card,
.dataTables_wrapper .dataTables_scroll,
.dataTables_wrapper .table,
.dataTables_wrapper .dataTables_paginate,
.dropdown-menu.glass-dropdown {
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

/* Ensure dropdown text is readable in light theme even when using
   Bootstrap's `dropdown-menu-dark` helper together with our glass dropdown */
.dropdown-menu.glass-dropdown,
.dropdown-menu.glass-dropdown .dropdown-item,
.dropdown-menu.glass-dropdown .dropdown-item-text {
    color: var(--text) !important;
}

/* Preserve intended dark theme dropdown colors */
[data-theme="dark"] .dropdown-menu.glass-dropdown,
[data-theme="dark"] .dropdown-menu.glass-dropdown .dropdown-item,
[data-theme="dark"] .dropdown-menu.glass-dropdown .dropdown-item-text {
    color: #e2e8f0 !important;
}

.app-shell {
    overflow-x: hidden;
}

.app-frame {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
}

.app-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    background: linear-gradient(180deg, rgba(3, 7, 18, 0.96), rgba(15, 23, 42, 0.94));
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.app-sidebar::-webkit-scrollbar {
    display: none;
}

.sidebar-logo,
.brand-mark,
.avatar-circle,
.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sidebar-logo,
.brand-mark {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.34);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22);
    overflow: hidden;
}

.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 1px; /* Gives the logo breathing room inside its beautiful rounded container */
}

.sidebar-brand-simple {
    padding: 0.35rem 0.2rem 0.9rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.24);
}

.sidebar-brand-tagline {
    color: rgba(226, 232, 240, 0.64);
    font-size: 0.95rem;
    line-height: 1.35;
    margin-top: 0.12rem;
}

.sidebar-nav .sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    color: rgba(226, 232, 240, 0.85);
    border-radius: 16px;
    transition: all 0.22s ease;
    margin-bottom: 0.35rem;
}

.app-sidebar .nav-label {
    color: rgba(203, 213, 225, 0.52) !important;
}

.sidebar-nav .sidebar-link:hover,
.sidebar-nav .sidebar-link.active {
    background: rgba(245, 158, 11, 0.16);
    color: #fff;
    transform: translateX(4px);
}

.sidebar-help-box {
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(15, 23, 42, 0.35);
    padding: 0.9rem 1rem;
    color: rgba(226, 232, 240, 0.7);
    line-height: 1.45;
}

.app-main {
    min-width: 0;
}

.app-navbar {
    min-height: 84px;
    background: rgba(255, 255, 255, 0.58);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(18px);
}

[data-theme="dark"] .app-navbar {
    background: rgba(15, 23, 42, 0.72);
}

[data-theme="dark"] .app-navbar .navbar-brand,
[data-theme="dark"] .app-navbar .navbar-brand .fw-bold,
[data-theme="dark"] .app-navbar .btn-icon,
[data-theme="dark"] .app-navbar .btn-profile {
    color: #e6edf7;
}

[data-theme="dark"] .app-navbar .text-muted {
    color: #94a8c4 !important;
}

[data-theme="dark"] .text-muted,
[data-theme="dark"] .text-secondary,
[data-theme="dark"] .text-body-secondary {
    color: #aab5ca !important;
}

[data-theme="dark"] .app-sidebar .nav-label {
    color: rgba(203, 213, 225, 0.52) !important;
}

[data-theme="dark"] .sidebar-brand-tagline {
    color: rgba(226, 232, 240, 0.78);
}

[data-theme="dark"] .sidebar-help-box {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(148, 163, 184, 0.3);
    color: rgba(226, 232, 240, 0.84);
}

.app-content {
    min-height: calc(100vh - 160px);
}

.app-footer {
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.45);
}

[data-theme="dark"] .app-footer {
    background: rgba(15, 23, 42, 0.5);
}

.btn-icon,
.btn-profile {
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    min-width: 44px;
    min-height: 44px;
    border-radius: 16px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn-icon:hover,
.btn-profile:hover {
    transform: translateY(-1px);
    background: var(--surface-strong);
    border-color: rgba(100, 116, 139, 0.35);
}

[data-theme="dark"] .btn-icon:hover,
[data-theme="dark"] .btn-profile:hover {
    background: rgba(30, 41, 59, 0.72);
    border-color: rgba(226, 232, 240, 0.35);
}

.avatar-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #1d4ed8);
    color: #fff;
    font-weight: 700;
}

.btn-profile {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.45rem 0.8rem;
}

.btn-brand {
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
    color: #fff;
}

.btn-brand:hover, .btn-brand:focus {
    background-color: var(--brand-blue-hover);
    border-color: var(--brand-blue-hover);
    color: #fff;
}

.hero-card,
.stats-card,
.chart-card,
.table-card,
.module-card {
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background: var(--surface-strong);
    box-shadow: var(--shadow);
}

.stats-card {
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
    min-height: 148px;
}

.stats-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.16), rgba(14, 116, 144, 0.16));
    color: var(--primary-strong);
    font-size: 1.25rem;
}

.stats-value {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    line-height: 1;
}

.page-title {
    font-weight: 800;
    letter-spacing: -0.03em;
}

.page-subtitle {
    color: var(--muted);
}

.module-toolbar,
.module-filters,
.module-actions,
.dashboard-section {
    margin-bottom: 1.25rem;
}

.dataTables_wrapper .table {
    margin-bottom: 0 !important;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.table thead th {
    border-bottom-color: var(--border) !important;
    color: var(--muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.table> :not(caption)>*>* {
    background: transparent;
    color: var(--text);
    vertical-align: middle;
}

[data-theme="dark"] .dataTables_wrapper .table,
[data-theme="dark"] .table {
    background: rgba(15, 23, 42, 0.5) !important;
    color: #e2e8f0;
    --bs-table-bg: rgba(15, 23, 42, 0.68);
    --bs-table-color: #dde6f3;
    --bs-table-border-color: rgba(148, 163, 184, 0.24);
    --bs-table-striped-bg: rgba(30, 41, 59, 0.62);
    --bs-table-striped-color: #e6edf8;
    --bs-table-hover-bg: rgba(51, 65, 85, 0.72);
    --bs-table-hover-color: #ffffff;
}

[data-theme="dark"] .table thead th {
    color: #b6c3d8;
}

[data-theme="dark"] .table> :not(caption)>*>* {
    color: #dde6f3;
    border-color: rgba(148, 163, 184, 0.24);
}

[data-theme="dark"] table.dataTable>thead>tr>th,
[data-theme="dark"] table.dataTable>thead>tr>td {
    background-color: rgba(15, 23, 42, 0.88) !important;
    color: #b8c6dc !important;
    border-bottom-color: rgba(148, 163, 184, 0.28) !important;
}

[data-theme="dark"] table.dataTable>tbody>tr>td,
[data-theme="dark"] table.dataTable>tbody>tr>th {
    background-color: rgba(15, 23, 42, 0.68) !important;
    color: #e2e8f0 !important;
    border-bottom-color: rgba(148, 163, 184, 0.22) !important;
}

[data-theme="dark"] table.dataTable.table-striped>tbody>tr:nth-of-type(odd)>* {
    background-color: rgba(30, 41, 59, 0.56) !important;
    color: #e6edf8 !important;
}

[data-theme="dark"] .dataTables_wrapper .dataTables_info,
[data-theme="dark"] .dataTables_wrapper .dataTables_length,
[data-theme="dark"] .dataTables_wrapper .dataTables_filter label {
    color: #a9bad3;
}

[data-theme="dark"] .dataTables_wrapper .dataTables_filter input,
[data-theme="dark"] .dataTables_wrapper .dataTables_length select {
    color: #e2e8f0 !important;
    background: rgba(15, 23, 42, 0.65) !important;
    border-color: rgba(148, 163, 184, 0.35) !important;
}

.badge-soft-success {
    background: rgba(16, 185, 129, 0.16);
    color: #10b981;
}

.badge-soft-danger {
    background: rgba(239, 68, 68, 0.16);
    color: #ef4444;
}

.badge-soft-warning {
    background: rgba(245, 158, 11, 0.16);
    color: #f59e0b;
}

.badge-soft-info {
    background: rgba(59, 130, 246, 0.16);
    color: #60a5fa;
}

.badge-soft-purple {
    background: rgba(168, 85, 247, 0.16);
    color: #a855f7;
}

.badge-soft-secondary {
    background: rgba(100, 116, 139, 0.16);
    color: #64748b;
}

.app-loader {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(2, 6, 23, 0.45);
    z-index: 2000;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.app-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-card {
    padding: 1.5rem 1.75rem;
    border-radius: 22px;
    text-align: center;
}

.auth-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 1.25rem;
}

.auth-layout {
    width: min(480px, 100%);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.auth-aside,
.auth-panel {
    border-radius: 28px;
    overflow: hidden;
    background: var(--surface-strong);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.auth-aside {
    color: white;
    background: linear-gradient(135deg, rgba(3, 7, 18, 0.92), rgba(15, 118, 110, 0.92)), radial-gradient(circle at top right, rgba(245, 158, 11, 0.28), transparent 28%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 640px;
}

.auth-panel {
    padding: 2rem;
    display: grid;
    align-items: center;
}

.auth-form-wrap {
    width: min(100%, 420px);
    margin: 0 auto;
}

.auth-brand-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
    display: block;
}

.auth-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.14);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.18);
    font-weight: 700;
}

.auth-feature-list {
    display: grid;
    gap: 1rem;
}

.auth-feature-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    align-items: start;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.auth-feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(245, 158, 11, 0.18);
    color: #fde68a;
    flex: 0 0 auto;
}

.auth-support-card {
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
}

.glass-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.chart-card canvas {
    min-height: 280px;
}

.empty-state {
    padding: 2.5rem 1.5rem;
    text-align: center;
    border: 1px dashed var(--border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.28);
}

.form-control,
.form-select,
.input-group-text,
.flatpickr-input {
    background-color: rgba(255, 255, 255, 0.78) !important;
    border-color: var(--border) !important;
    color: var(--text) !important;
}

[data-theme="dark"] .form-control,
[data-theme="dark"] .form-select,
[data-theme="dark"] .input-group-text,
[data-theme="dark"] .flatpickr-input {
    background-color: rgba(15, 23, 42, 0.82) !important;
    color: var(--text) !important;
}

[data-theme="dark"] .form-label {
    color: #dde6f3 !important;
    font-weight: 500;
}

[data-theme="dark"] .form-control::placeholder,
[data-theme="dark"] .form-select option {
    color: #94a8c4 !important;
}

[data-theme="dark"] .form-control {
    color: #e2e8f0 !important;
}

[data-theme="dark"] .form-select {
    color: #e2e8f0 !important;
}

[data-theme="dark"] .modal-content {
    background-color: rgba(15, 23, 42, 0.96) !important;
    border-color: rgba(148, 163, 184, 0.22) !important;
    color: #e2e8f0;
}

[data-theme="dark"] .modal-header {
    border-bottom-color: rgba(148, 163, 184, 0.22) !important;
    color: #e2e8f0;
}

[data-theme="dark"] .modal-header .btn-close {
    filter: invert(0.8);
}

[data-theme="dark"] .modal-body {
    color: #e2e8f0;
}

[data-theme="dark"] .modal-content .text-muted {
    color: #94a8c4 !important;
}

[data-theme="dark"] .modal-footer {
    border-top-color: rgba(148, 163, 184, 0.22) !important;
}

.modal-content .text-muted {
    color: #64748b !important;
}

.modal-content .btn-close {
    filter: none;
}

.btn-action-view {
    .btn-close-white {
        --bs-btn-close-color: #0f172a;
    }

    [data-theme="dark"] .btn-close-white {
        --bs-btn-close-color: #e2e8f0;
    }

    --bs-btn-color: #334155;
    --bs-btn-border-color: rgba(100, 116, 139, 0.5);
    --bs-btn-hover-color: #0f172a;
    --bs-btn-hover-bg: rgba(148, 163, 184, 0.16);
    --bs-btn-hover-border-color: #64748b;
    --bs-btn-active-color: #0f172a;
    --bs-btn-active-bg: rgba(148, 163, 184, 0.2);
    --bs-btn-active-border-color: #64748b;
    --bs-btn-disabled-color: #334155;
    --bs-btn-disabled-bg: rgba(148, 163, 184, 0.1);
    --bs-btn-disabled-border-color: rgba(100, 116, 139, 0.4);
    opacity: 1;
}

.btn-action-view:disabled,
.btn-action-view.disabled {
    opacity: 1;
}

.row-actions {
    flex-wrap: nowrap !important;
    white-space: nowrap;
    align-items: center;
}

.row-actions .btn {
    white-space: nowrap;
    flex: 0 0 auto;
}

.table td.text-end.text-nowrap,
.table th.text-end.text-nowrap {
    white-space: nowrap;
}

[data-theme="dark"] .btn-action-view {
    --bs-btn-color: #dbe6f5;
    --bs-btn-border-color: rgba(226, 232, 240, 0.5);
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: rgba(226, 232, 240, 0.12);
    --bs-btn-hover-border-color: rgba(226, 232, 240, 0.75);
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: rgba(226, 232, 240, 0.18);
    --bs-btn-active-border-color: rgba(226, 232, 240, 0.75);
    --bs-btn-disabled-color: #dbe6f5;
    --bs-btn-disabled-bg: rgba(148, 163, 184, 0.18);
    --bs-btn-disabled-border-color: rgba(226, 232, 240, 0.38);
}

@media (max-width: 1199.98px) {
    .app-frame {
        grid-template-columns: 1fr;
    }

    .app-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        width: 290px;
        z-index: 1050;
        transform: translateX(-100%);
        transition: transform 0.25s ease;
    }

    .app-sidebar.is-open {
        transform: translateX(0);
    }
}

@media (max-width: 991.98px) {
    .auth-layout {
        grid-template-columns: 1fr;
    }

    .auth-aside {
        min-height: auto;
    }
}

@media (max-width: 575.98px) {
    .app-navbar {
        min-height: 74px;
    }

    .auth-panel,
    .auth-aside {
        padding: 1.25rem;
        border-radius: 22px;
    }

    .stats-card {
        min-height: 126px;
    }
}

/* Custom Premium Logo Badge Styles */
.auth-logo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    border-radius: 24px;
    background: #ffffff;
    border: 1.5px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06), 0 4px 12px rgba(15, 23, 42, 0.02);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.auth-logo-badge:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 24px 48px rgba(245, 158, 11, 0.15), 0 8px 24px rgba(15, 23, 42, 0.04);
}

.auth-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px; /* Safe padding for logo inside badge */
    transition: transform 0.3s ease;
}

.auth-logo-badge:hover .auth-logo-img {
    transform: scale(1.03);
}

.du-sheets-shell {
    display: grid;
    gap: 1.25rem;
}

.du-page-root {
    min-height: 420px;
}

.du-sticky {
    position: sticky;
    top: 1.25rem;
}

.du-section-card,
.du-preview-card,
.nozzle-card,
.repeat-row,
.du-stat-box {
    border-radius: 22px;
    border: 1px solid var(--border);
    background: var(--surface-strong);
    box-shadow: var(--shadow);
}

.du-section-card {
    overflow: hidden;
}

.du-preview-card {
    border-style: dashed;
}

.du-stat-box {
    padding: 1rem;
    height: 100%;
}

.du-stat-value {
    font-size: 1.1rem;
    font-weight: 800;
    margin-top: 0.35rem;
}

.du-summary-pill {
    padding: 0.85rem 0.95rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid var(--border);
}

.du-summary-pill-value {
    font-weight: 800;
    font-size: 1rem;
    margin-top: 0.35rem;
}

.du-metric-card {
    border-radius: 18px;
    padding: 0.9rem 1rem;
    background: rgba(148, 163, 184, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.16);
}

.du-form-shell {
    display: grid;
    gap: 1.25rem;
}

.repeat-row {
    overflow: hidden;
}

.nozzle-card {
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nozzle-card:hover,
.repeat-row:hover {
    transform: translateY(-2px);
}

.du-skeleton-table {
    display: grid;
    gap: 0.85rem;
}

.du-skeleton-line {
    height: 0.85rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(148, 163, 184, 0.16) 0%, rgba(148, 163, 184, 0.28) 50%, rgba(148, 163, 184, 0.16) 100%);
    background-size: 200% 100%;
    animation: du-shimmer 1.5s infinite linear;
}

@keyframes du-shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.du-loading .app-content {
    cursor: progress;
}

.du-loading .du-section-card,
.du-loading .module-card,
.du-loading .table-card {
    opacity: 0.96;
}

.badge-soft-info {
    background: rgba(59, 130, 246, 0.16);
    color: #3b82f6;
}

.badge-soft-secondary {
    background: rgba(100, 116, 139, 0.16);
    color: #64748b;
}

.du-report-grid {
    display: grid;
    gap: 1.25rem;
}

.du-report-section {
    border-radius: 22px;
    border: 1px solid var(--border);
    background: var(--surface-strong);
    box-shadow: var(--shadow);
    padding: 1.25rem;
}

.detail-row {
    padding: 0.85rem 0.95rem;
    border-radius: 16px;
    background: rgba(148, 163, 184, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.14);
}

@media print {
    .app-sidebar,
    .app-navbar,
    .app-footer,
    .btn,
    .du-sticky,
    .du-page-root [data-du-print],
    .du-page-root [data-du-edit-link],
    .du-page-root [data-du-view-link] {
        display: none !important;
    }

    .app-frame,
    .app-main,
    .app-content {
        display: block !important;
        min-height: auto !important;
    }

    body {
        background: #fff !important;
        color: #000 !important;
    }

    .du-section-card,
    .du-report-section,
    .nozzle-card,
    .repeat-row,
    .du-stat-box {
        box-shadow: none !important;
        background: #fff !important;
    }
}
