@import url('https://fonts.googleapis.com/css2?family=Geist:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Geist', sans-serif;
    font-size: 13px;
    /* font-size: 0.875rem; */
    /* Font Smoothing - Membuat font lebih halus */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Smooth transitions untuk elemen interaktif */
input, select, button, textarea, a {
    transition: all 0.2s ease-in-out;
}

/* --------------------------------------------------------------- */
/* GENERAL STYLES */
/* --------------------------------------------------------------- */
body {
    overflow-x: hidden;
    background-color: #edf3f8;
    color: var(--onv-light-text-secondary);
}

h1,
h2,
h3,
h4,
h5,
p {
    margin: 0;
}

.nop {
    padding: 0 !important;
}

.nom {
    margin: 0 !important;
}

small{
    font-size: 10px;
    margin: 0;
    line-height: 0;
}

/* --------------------------------------------------------------- */
/* Dark mode styles */
/* --------------------------------------------------------------- */

body.onv-dark-mode {
    background-color: var(--onv-dark-bg-secondary);
    color: var(--onv-dark-text-secondary);
}

body.onv-dark-mode .onv-header {
    background-color: var(--onv-dark-bg);
    color: var(--onv-dark-text-primary);
    border-bottom: 1px solid var(--onv-dark-border-secondary);
}

body.onv-dark-mode .onv-header-icons-box {
    background-color: var(--onv-dark-bg-secondary);
    border: 1px solid var(--onv-dark-border-secondary);
    color: var(--onv-dark-text-primary)
}

body.onv-dark-mode .onv-header-users {
    background-color: var(--onv-dark-bg-primary);
}

body.onv-dark-mode .onv-content-header {
    border-bottom: 1px solid var(--onv-dark-border-secondary);
}

body.onv-dark-mode .onv-sidebar {
    background-color: var(--onv-dark-bg);
    border-right: 1px solid var(--onv-dark-border-secondary)
}

body.onv-dark-mode .onv-popup-submenu {
    background-color: var(--onv-dark-bg-primary);
    border: 1px solid var(--onv-dark-border-secondary);
}

body.onv-dark-mode .onv-popup-submenu li:hover {
    background-color: var(--onv-dark-bg-secondary);
}

body.onv-dark-mode .onv-menu-item:hover {
    background-color: var(--onv-dark-bg-secondary);
}

body.onv-dark-mode .onv-menu-item a {
    color: var(--onv-dark-text-secondary);
}

body.onv-dark-mode .onv-sidebar-profile {
    color: var(--onv-dark-text-secondary);
    border: 1px solid var(--onv-dark-border-secondary);
    background-color: var(--onv-dark-bg-secondary);
}

body.onv-dark-mode .onv-sidebar-footer {
    background-color: var(--onv-dark-bg-secondary);
}

body.onv-dark-mode .onv-dropdown-users {
    background-color: var(--onv-dark-bg-primary);
    border: 1px solid var(--onv-dark-border-secondary);
}

body.onv-dark-mode .onv-dropdown-users a {
    color: var(--onv-dark-text-secondary);
}

body.onv-dark-mode .onv-dropdown-users a:hover {
    background-color: var(--onv-dark-bg-secondary);
}

/* --------------------------------------------------------------- */
/* HEADER STYLES */
/* --------------------------------------------------------------- */
.onv-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--onv-thema);
    border-bottom: 1px solid color-mix(in srgb, #ffffff 8%, transparent);
    z-index: 1000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.onv-header-icons .fas,
.onv-header-icons .far {
    color: #c9cbe0;
}

.onv-header-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.onv-header-icons>* {
    margin-left: 0;
    cursor: pointer;
}

.onv-header-icons-box {
    background: none;
    padding: 0;
    background-color: transparent;
    border: 1px solid transparent;
    color: #c9cbe0;
    border-radius: 5px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.onv-header-icons-box:hover {
    background-color: color-mix(in srgb, #ffffff 10%, transparent);
    border-color: color-mix(in srgb, #ffffff 14%, transparent);
    color: #ffffff;
}

.onv-header-icons-box i {
    font-size: 16px;
}

.onv-header-users {
    background-color: #1d4ed800;
    border-radius: 5px;
    display: inline-block;
    padding: 2px;
    width: 30px;
    cursor: pointer;
}

.onv-logo {
    display: flex;
    align-items: center;
}

.onv-logo-text {
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 0.01em;
}

.onv-logo-app {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.onv-logo-app img {
    width: 30px;
    height: 30px;
    margin-left: 0px;
}

.onv-toggle-btn-mobile {
    margin-right: 10px;
    display: none;
    color: #fff;
}

.onv-toggle-btn-desktop {
    z-index: 11;
    position: fixed;
    left: 210px;
    bottom: 14px; /* center vertikal di footer 56px: (56-28)/2 */
    color: #e8ebf4;
    height: 28px;
    width: 28px;
    background-color: color-mix(in srgb, #ffffff 8%, transparent);
    border: 1px solid color-mix(in srgb, #ffffff 14%, transparent);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.onv-toggle-btn-desktop:hover {
    background-color: color-mix(in srgb, #ffffff 16%, transparent);
    border-color: color-mix(in srgb, #ffffff 24%, transparent);
    color: #ffffff;
}

.onv-toggle-btn-desktop:active {
    transform: scale(0.94);
}

.onv-toggle-btn-desktop i {
    font-size: 14px;
    line-height: 1;
}

/* --------------------------------------------------------------- */
/* SIDEBAR STYLES */
/* --------------------------------------------------------------- */
.onv-sidebar::-webkit-scrollbar {
    width: 0;
}

.onv-sidebar {
    position: fixed;
    left: 0;
    top: 50px;
    bottom: 0;
    width: 250px;
    transition: all 0.3s;
    overflow-y: auto;
    background-color: #222251;
    border-right: 1px solid color-mix(in srgb, #ffffff 6%, transparent);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 200;
    color: #c9cbe0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.onv-sidebar span,
.onv-sidebar a {
    color: #c9cbe0;
}

.onv-sidebar i {
    color: #a7aac4;
}

.onv-sidebar.onv-sidebar-collapse {
    width: 50px;
}

.onv-sidebar-profile {
    margin: 10px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-radius: 5px;
    color: #ffffff;
    border: 1px solid transparent;
    background-color: color-mix(in srgb, #ffffff 5%, transparent);
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.onv-sidebar-profile:hover {
    background-color: color-mix(in srgb, #ffffff 9%, transparent);
    border-color: color-mix(in srgb, #ffffff 10%, transparent);
}

.onv-sidebar-collapse .onv-sidebar-profile {
    margin: 4px;
}

.onv-sidebar-collapse .onv-sidebar-profile-img {
    width: 20px;
    height: 20px;
}

.onv-sidebar-profile-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px color-mix(in srgb, #ffffff 10%, transparent);
}

.onv-sidebar-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.onv-sidebar-profile-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.onv-sidebar-menu-close-mobile {
    cursor: pointer;
    margin-left: 10px;
    display: none;
    /* color: #979797;
    height: 20px;
    width: 20px;
    background-color: #d9d9d9;
    border-radius: 50%; */
}

.onv-sidebar-menu {
    margin: 10px 14px;
}

.onv-sidebar-collapse .onv-sidebar-menu {
    margin: 10px 4px;
}

.onv-menu-item {
    position: relative;
    padding: 7px 12px;
    margin: 0;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.onv-menu-item:hover {
    background-color: color-mix(in srgb, #ffffff 9%, transparent);
    box-shadow: none;
}

.onv-menu-item:hover a,
.onv-menu-item:hover i {
    color: #ffffff;
}

.onv-menu-item.onv-active,
.onv-menu-item.active {
    background-color: color-mix(in srgb, #ffffff 14%, transparent);
    border-radius: 5px;
    position: relative;
}

.onv-menu-item.onv-active::before,
.onv-menu-item.active::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background-color: #ffffff;
    border-radius: 0 3px 3px 0;
}

.onv-menu-item.onv-active a,
.onv-menu-item.onv-active i,
.onv-menu-item.active a,
.onv-menu-item.active i {
    color: #ffffff;
    font-weight: 600;
}

.onv-menu-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #c9cbe0;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0;
    transition: color 0.15s ease;
}

.onv-menu-item i {
    color: #a7aac4;
    margin-right: 0;
    width: 18px;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s ease;
}

.onv-submenu {
    display: none;
    transition: all 0.3s ease;
    padding-left: 27px;
    padding-top: 6px
}

.onv-submenu.onv-active {
    display: block;
}

.onv-submenu li {
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.onv-submenu li a {
    padding: 5px 5px;
    width: 100%;
}

.onv-menu-item .onv-submenu i {
    font-size: 10px;
    margin-right: 5px;
    width: 0px;
}

.onv-menu-item .onv-popup-submenu i {
    font-size: 10px;
    width: 5px;
}

.onv-accordion-menu-i {
    margin-left: auto;
    transition: transform 0.3s ease;
    font-size: 12px !important;
}

.onv-accordion-menu-i.onv-rotate {
    transform: rotate(180deg);
}

.onv-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 10px;
}

.onv-sidebar.onv-sidebar-collapse .onv-submenu {
    position: fixed;
    left: 53px;
    width: 200px;
    background-color: #222251;
    border: 1px solid color-mix(in srgb, #ffffff 12%, transparent);
    border-radius: 5px;
    box-shadow: none;
    display: none;
    padding: 6px 0;
    z-index: 1100;
}

.onv-sidebar.onv-sidebar-collapse .onv-submenu a {
    display: inline-flex;
}

.onv-sidebar.onv-sidebar-collapse .onv-menu-item > a {
    display: block;
}

.onv-sidebar-collapse .onv-accordion-menu-i {
    display: none !important;
}

.onv-sidebar-collapse .onv-submenu-toggle {
    display: block !important;
}

.onv-menu-item-restrictions {
    text-transform: uppercase !important;
    margin: 12px 0 4px;
    padding: 4px 10px !important;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #7e82a0;
    cursor: default !important;
}

.onv-menu-item-restrictions:hover {
    background-color: transparent !important;
    box-shadow: none !important;
}

.onv-sidebar-menu-close-mobile i {
    font-size: 20px;
}

.onv-profile-name {
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

.onv-profile-email {
    font-size: 11px;
    color: #9599b5;
    line-height: 1.2;
}

.onv-sidebar-footer {
    padding: 14px 20px;
    min-height: 56px;
    bottom: 0;
    width: 100%;
    position: sticky;
    display: flex;
    align-items: center;
    background-color: var(--onv-thema, #292961);
    border-top: 1px solid color-mix(in srgb, #ffffff 10%, transparent);
}

/* --------------------------------------------------------------- */
/* CONTENT HEADER STYLES */
/* --------------------------------------------------------------- */
.onv-content-header {
    display: flex;
    align-items: center;
    height: 50px;
    padding: 8px;
    gap: 8px;
    border-bottom: 1px solid var(--onv-dark-border-tertiary);
    box-sizing: border-box;
}

.onv-content-body {
    padding: 10px;
    background-color: #edf3f8;
    min-height: calc(100vh - 50px);
}

/* --------------------------------------------------------------- */
/* CONTENT STYLES */
/* --------------------------------------------------------------- */
.onv-content {
    flex-grow: 1;
    padding-top: 50px;
    margin-left: 250px;
    transition: margin-left 0.3s;
    overflow-x: auto;
}

.onv-sidebar.onv-sidebar-collapse+.onv-content {
    margin-left: 50px;
}

.onv-sub-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 20px; */
}

.onv-sidebar.onv-sidebar-collapse .onv-sidebar-profile-info,
.onv-sidebar.onv-sidebar-collapse .onv-menu-item span {
    display: none;
}

.onv-sidebar.onv-sidebar-collapse .onv-menu-item {
    text-align: center;
    padding: 5px 0;
}

/* .onv-sidebar.onv-sidebar-collapse .onv-menu-item:hover::after {
    content: attr(data-title);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    z-index: 1;
} */

/* --------------------------------------------------------------- */
/* DROPDOWN STYLES */
/* --------------------------------------------------------------- */

.onv-dropdown-users {
    display: none;
    position: absolute;
    right: 10px;
    top: 42px;
    background-color: var(--onv-surface, #ffffff);
    min-width: 160px;
    box-shadow: var(--onv-shadow-lg);
    z-index: 1;
    border-radius: 5px;
    border: 1px solid var(--onv-border, #e6e8ee);
}

.onv-dropdown-users a {
    color: black;
    padding: 5px 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.onv-dropdown-users a:hover {
    background-color: #f1f1f1;
}

.onv-popup-submenu {
    display: none;
    position: fixed;
    left: 53px;
    top: 0;
    background-color: #222251;
    box-shadow: none;
    border-radius: 5px;
    z-index: 1200;
    min-width: 180px;
    text-align: left;
    border: 1px solid color-mix(in srgb, #ffffff 12%, transparent);
    padding: 0;
    margin: 0;
}

.onv-popup-submenu li:first-child {
    padding-top: 5px;
}

.onv-popup-submenu li:last-child {
    padding-bottom: 5px;
}

.onv-popup-submenu li {
    list-style-type: none;
    padding: 5px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #e8ebf4;
}

.onv-popup-submenu li a {
    color: #e8ebf4;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.onv-popup-submenu li:hover {
    background-color: color-mix(in srgb, #ffffff 10%, transparent);
}

.onv-popup-submenu li:hover,
.onv-popup-submenu li:hover a {
    color: #ffffff;
}


.onv-sidebar-collapse .onv-sidebar-profile-container {
    padding: 5px;
}

/* --------------------------------------------------------------- */
/* RESPONSIVE STYLES */
/* --------------------------------------------------------------- */

@media (max-width: 768px) {
    .onv-sidebar {
        left: -250px;
    }

    .onv-sidebar.onv-open {
        left: 0 !important;
        width: 100%;
    }

    .onv-content {
        margin-left: 0;
    }

    .onv-sidebar.onv-sidebar-collapse+.onv-content {
        margin-left: 0;
    }

    .onv-sidebar-menu-close-mobile {
        display: block;
    }

    .onv-toggle-btn-desktop {
        display: none;
    }

    .onv-toggle-btn-mobile {
        display: block;
    }
}

/* --------------------------------------------------------------- */
/* DARK MODE TOOGLE*/
/* --------------------------------------------------------------- */

body.onv-dark-mode .onv-dark-mode-btn .la-sun {
    display: none;
}

body.onv-dark-mode .onv-dark-mode-btn .la-moon {
    display: inline-block;
}

body:not(.onv-dark-mode) .onv-dark-mode-btn .la-sun {
    display: inline-block;
}

body:not(.onv-dark-mode) .onv-dark-mode-btn .la-moon {
    display: none;
}

/* header section */
.onv-header-section-title {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}

.onv-header-section-title h3 {
    font-size: 1.25rem;
    /* 20px */
    margin: 0;
    font-weight: 600;
}

.onv-header-section-title p {
    font-size: 0.9rem;
    /* 12px */
    color: #777;
    margin: 0.25rem 0 0;
}

/* greeting */
.onv-greeting-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.onv-greeting-text {
    display: flex;
    flex-direction: column;
}

.onv-greeting-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: var(--onv-thema, #292961);
}

.onv-greeting-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-top: 4px;
}

/* stat */
.onv-stats-wrapper {
    display: flex;
    background-color: var(--onv-soft-success);
    color: var(--onv-success);
    padding: 24px 32px;
    gap: 32px;
    border: 1px solid var(--onv-border, #e6e8ee);
    border-radius: 5px;
    justify-content: space-between;
    /* box-shadow: 0 4px 12px #046c4e94; */
}

.onv-stat-box {
    flex: 1;
    border-right: 1px solid #046c4e94;
    padding-right: 24px;
}

.onv-stat-box:last-child {
    border-right: none;
    padding-right: 0;
}

.onv-stat-title {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--onv-success);
    opacity: 0.9;
}

.onv-stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--onv-success);
    margin-bottom: 4px;
}

.onv-stat-desc {
    font-size: 0.8rem;
    color: var(--onv-success);
    margin: 0;
}

/* --------------------------------------------------------------- */
/* CARD */
/* --------------------------------------------------------------- */
.onv-card {
    border-radius: 5px;
    color: var(--onv-text, #1f2430);
    border-style: solid;
    border-width: 1px;
    border-color: var(--onv-border, #e6e8ee);
    background-color: var(--onv-surface, #ffffff);
    flex-direction: column;
    align-items: stretch;
    display: flex;
}

.onv-card-header {
    min-height: 10px;
    min-height: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px
}

.onv-card-body {
    padding: 10px;
}

.onv-card-footer {
    padding: 10px;
}

/* --------------------------------------------------------------- */
/* TABLE */
/* --------------------------------------------------------------- */
.onv-table-freeze-wrapper {
    position: relative;
    height: 70vh;
    overflow: hidden;
    border: 1px solid var(--onv-border, #e6e8ee);
    border-radius: 5px;
    background-color: #ffffff;
}

.onv-table-freeze-container {
    height: 100%;
    overflow: auto;
}

.onv-table-freeze {
    border-collapse: separate;
    border-spacing: 0;
}

.onv-table-freeze th {
    padding: 4px 6px;
    border-top: 1px solid var(--onv-border, #e6e8ee);
    border-right: 1px solid var(--onv-border, #e6e8ee);
    border-bottom: 0;
    border-left: 0;
    background: var(--onv-surface-muted, #f7f8fb);
    color: var(--onv-text, #1f2430);
    white-space: nowrap;
}

.onv-table-freeze td {
    padding: 4px 6px;
    border-top: 1px solid var(--onv-border, #e6e8ee);
    border-right: 1px solid var(--onv-border, #e6e8ee);
    border-bottom: 1px solid var(--onv-border, #e6e8ee);
    border-left: 0;
    background: var(--onv-surface, #ffffff);
    white-space: nowrap;
}

.onv-table-freeze thead {
    position: sticky;
    top: 0;
    z-index: 100;
}

.onv-table-freeze-fixed-colomn {
    position: sticky;
    left: 0;
    background: white;
    font-weight: 600;
    /* Cuma ini yang perlu */
    transform: translate3d(0, 0, 0);
}

.onv-table-freeze-table-freeze-fixed-colomn-header {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 150 !important;
    background: var(--onv-surface-muted, #f7f8fb) !important;
    color: var(--onv-text, #1f2430) !important;
    vertical-align: middle !important;
    will-change: transform !important;
    backface-visibility: hidden !important;
    box-shadow: 1px 0 0 var(--onv-border, #e6e8ee) !important;
}

.onv-table-freeze tbody tr:hover {
    background-color: var(--onv-thema-50, #f4f4fa) !important;
}

.onv-table-freeze tbody tr:hover td {
    background-color: var(--onv-thema-50, #f4f4fa) !important;
}


.onv-fieldset {
    border: 1px solid var(--onv-border, #e6e8ee);
    border-radius: 5px;
    padding: 15px;
    min-width: 0;
}
.onv-fieldset legend {
    font-weight: 600;
    padding: 0 5px;
    color: var(--onv-text, #1f2430);
}

/* --------------------------------------------------------------- */
/* SUMMARY CARD */
/* --------------------------------------------------------------- */

.onv-card-summary {
        background: var(--onv-surface, #ffffff);
        padding: 10px;
        border: 1px solid var(--onv-border, #e6e8ee) !important;
        border-radius: 5px;
    }

    .onv-card-summary-header {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-bottom: 5px;
    }

    .onv-card-summary-title {
        font-size: 12px;
        color: #6b7280;
        font-weight: 500;
    }

    .onv-card-summary-body {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    .onv-card-summary-content {
        flex: 1;
    }

    .onv-card-summary-mainvalue {
        font-size: 24px;
        font-weight: 600;
        color: var(--onv-thema);
        margin-bottom: 6px;
    }

    .onv-card-summary-change {
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 13px;
    }

    .onv-card-summary-change.positive {
        color: var(--onv-thema);
    }

    .onv-card-summary-change-label {
        margin-left: 2px;
    }

    .onv-card-summary-chart {
        width: 120px;
        height: 60px;
        margin-left: 16px;
    }

    .onv-card-summary-chart svg {
        width: 100%;
        height: 100%;
    }

    .onv-card-summary-chart-line.thema {
        stroke: var(--onv-thema);
    }

    .onv-card-summary-chart-line.danger {
        stroke: var(--onv-danger);
    }

    .onv-card-summary-chart-line.success {
        stroke: var(--onv-success);
    }

    .onv-card-summary-chart-line.info {
        stroke: var(--onv-info);
    }

    .onv-card-summary-chart-line.warning {
        stroke: var(--onv-warning);
    }

    .onv-card-summary-chart-line {
        fill: none;
        stroke-width: 1.5;
    }

/* --------------------------------------------------------------- */
/* ORDER FORM LAYOUT - Grid 4:8 */
/* --------------------------------------------------------------- */
.onv-order-layout {
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 0;
    margin-bottom: 1rem;
    background-color: #ffffff;
    border-radius: 5px;
}

.onv-order-sidebar {
    padding: 1rem;
    border-right: 1px solid var(--onv-border, #e6e8ee);
}

.onv-order-main {
    padding: 1rem;
    min-width: 0;
}

@media (max-width: 768px) {
    .onv-order-layout {
        grid-template-columns: 1fr;
    }

    .onv-order-sidebar {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }
}