:root {
    --sf-ink: #14211f;
    --sf-muted: #66756f;
    --sf-line: #dbe5df;
    --sf-bg: #f4f7f5;
    --sf-panel: #ffffff;
    --sf-primary: #14785d;
    --sf-primary-dark: #0f5f4d;
    --sf-blue: #123d5a;
    --sf-warn: #b7791f;
    --sf-danger: #b42318;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    background: var(--sf-bg);
    color: var(--sf-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
    overflow: hidden;
}

[x-cloak] {
    display: none !important;
}

button,
input,
select,
textarea {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

.shell,
.app-shell {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    height: 100vh;
    height: 100dvh;
    min-height: 0;
    overflow: hidden;
}

.app-shell {
    transition: grid-template-columns .18s ease;
}

.app-shell.sidebar-collapsed {
    grid-template-columns: 76px minmax(0, 1fr);
}

.sidebar {
    position: relative;
    background: #10231f;
    color: #e7f2ec;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    padding: 18px 14px;
}

.sidebar-brand-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.sidebar-offcanvas {
    width: min(86vw, 320px) !important;
    background: #10231f;
    color: #e7f2ec;
}

.sidebar-offcanvas .offcanvas-header,
.sidebar-offcanvas .offcanvas-body {
    padding: 16px;
}

.sidebar-head {
    display: block;
}

.menu-toggle,
.menu-button {
    display: none;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 8px 10px;
    border-bottom: 0;
}

.sidebar-brand-row .brand {
    flex: 1 1 auto;
}

.auth-brand {
    padding: 0 0 18px;
    border-bottom-color: var(--sf-line);
}

.brand-mark {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 8px;
    background: #1f9f78;
    color: white;
    font-weight: 800;
}

.brand-title {
    display: block;
    font-size: 18px;
    font-weight: 750;
}

.brand-subtitle {
    display: block;
    color: #9fb9ae;
    font-size: 12px;
}

.sidebar-collapse-toggle {
    flex: 0 0 auto;
    width: 36px;
    min-height: 36px;
    padding: 0;
    border-color: rgba(255, 255, 255, .18);
    color: #d5e6df;
}

.sidebar-collapse-toggle:hover,
.sidebar-collapse-toggle:focus {
    border-color: rgba(255, 255, 255, .32);
    background: rgba(255, 255, 255, .1);
    color: white;
}

.sidebar-collapse-toggle svg {
    width: 17px;
    height: 17px;
    pointer-events: none;
}

.nav-section {
    margin: 18px 0 8px;
    color: #8fb0a4;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sidebar-menu {
    flex-wrap: nowrap;
    padding-top: 12px;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-color: rgba(170, 199, 187, .45) transparent;
    scrollbar-width: thin;
}

.sidebar .sidebar-menu {
    flex: 1 1 auto;
    max-height: none;
    min-height: 0;
}

.sidebar-menu::-webkit-scrollbar {
    width: 8px;
}

.sidebar-menu::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-menu::-webkit-scrollbar-thumb {
    background: rgba(170, 199, 187, .28);
    border: 2px solid #10231f;
    border-radius: 999px;
}

.sidebar-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(170, 199, 187, .52);
}

.sidebar-menu.nav-pills .nav-link {
    --bs-nav-link-color: #d5e6df;
    --bs-nav-pills-link-active-bg: rgba(255, 255, 255, .12);
    --bs-nav-pills-link-active-color: #fff;
}

.sidebar-menu.nav-pills .nav-link:hover {
    color: #fff;
}

.sidebar-menu > .collapse,
.sidebar-menu > .collapsing {
    width: 100%;
}

.sidebar-menu .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 11px;
    border-radius: 8px;
    color: #d5e6df;
}

.nav-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.nav-icon,
.title-icon,
.section-icon,
.btn-icon,
.field-icon {
    flex: 0 0 auto;
    stroke-width: 2.1;
}

.nav-icon {
    width: 17px;
    height: 17px;
    color: #9fd2c0;
    pointer-events: none;
}

.sidebar-menu button.nav-link {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
}

.nav-toggle {
    justify-content: space-between;
}

.nav-caret {
    width: .45rem;
    height: .45rem;
    margin-left: auto;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    opacity: .75;
    transform: rotate(45deg);
    transition: transform .15s ease;
}

.nav-toggle[aria-expanded="true"] .nav-caret {
    transform: rotate(225deg);
}

.sidebar-menu .nav-link:hover,
.sidebar-menu .nav-link.active {
    background: rgba(255, 255, 255, .1);
    color: white;
}

.sidebar-menu .nav-link:focus,
.sidebar-menu .nav-link:active,
.sidebar-menu .nav-link.active {
    color: white;
}

.nav-sub {
    display: grid;
    gap: 2px;
    margin: -2px 0 8px 12px;
    padding: 4px 0 4px 12px;
    border-left: 1px solid rgba(255, 255, 255, .14);
}

.nav-sub a {
    display: flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 9px;
    border-radius: 7px;
    color: #aac7bb;
    font-size: 13px;
}

.nav-sub a:hover,
.nav-sub a.active {
    background: rgba(255, 255, 255, .08);
    color: white;
}

.sidebar-collapsed .sidebar {
    padding-inline: 10px;
}

.sidebar-collapsed .sidebar-brand-row {
    justify-content: center;
}

.sidebar-collapsed .sidebar-brand-row .brand {
    flex: 0 0 auto;
    padding-inline: 0;
}

.sidebar-collapsed .brand-copy,
.sidebar-collapsed .nav-section,
.sidebar-collapsed .nav-caret,
.sidebar-collapsed .nav-sub,
.sidebar-collapsed .sidebar-menu > .collapse,
.sidebar-collapsed .sidebar-menu > .collapsing {
    display: none !important;
}

.sidebar-collapsed .sidebar-collapse-toggle {
    position: absolute;
    top: 60px;
    left: 20px;
}

.sidebar-collapsed .sidebar-menu {
    padding-top: 54px;
}

.sidebar-collapsed .sidebar-menu .nav-link {
    justify-content: center;
    min-height: 44px;
    padding: 10px;
}

.sidebar-collapsed .nav-label {
    justify-content: center;
    gap: 0;
}

.sidebar-collapsed .nav-label {
    font-size: 0;
}

.sidebar-collapsed .nav-icon {
    width: 20px;
    height: 20px;
}

.main {
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100dvh;
    min-width: 0;
    overflow: hidden;
}

.topbar {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 66px;
    padding: 12px 24px;
    background: var(--sf-panel);
    border-bottom: 1px solid var(--sf-line);
}

.context {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-search {
    min-width: min(360px, 44vw);
}

.context form {
    margin: 0;
}

.form-control,
.form-select {
    border-color: var(--sf-line);
    border-radius: 7px;
    color: var(--sf-ink);
}

.form-control:focus,
.form-select:focus {
    border-color: #8ccbb8;
    box-shadow: 0 0 0 .2rem rgba(20, 120, 93, .12);
}

.ts-wrapper.form-select,
.ts-wrapper.form-control {
    padding: 0;
}

.ts-wrapper.single .ts-control,
.ts-wrapper.multi .ts-control {
    min-height: 38px;
    border-color: var(--sf-line);
    border-radius: 7px;
    color: var(--sf-ink);
}

.ts-wrapper.focus .ts-control {
    border-color: #8ccbb8;
    box-shadow: 0 0 0 .2rem rgba(20, 120, 93, .12);
}

.ts-control.is-invalid {
    border-color: var(--sf-danger);
    box-shadow: 0 0 0 .2rem rgba(180, 35, 24, .1);
}

.ts-control.is-valid {
    border-color: #3aa67d;
}

.ts-dropdown {
    border-color: var(--sf-line);
    box-shadow: 0 14px 30px rgba(20, 33, 31, .12);
}

.ts-dropdown .active {
    background: rgba(20, 120, 93, .1);
    color: var(--sf-ink);
}

.content {
    flex: 1 1 auto;
    max-width: 1680px;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 24px;
}

.breadcrumb-shell {
    margin: -6px 0 16px;
    color: var(--sf-muted);
    font-size: 12px;
}

.breadcrumb-shell .breadcrumb-item + .breadcrumb-item::before {
    color: #9aaba5;
}

.breadcrumb-shell a {
    color: var(--sf-primary);
    font-weight: 650;
}

.app-footer {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 42px;
    padding: 10px 24px;
    border-top: 1px solid var(--sf-line);
    background: var(--sf-panel);
    color: var(--sf-muted);
    font-size: 12px;
}

h1 {
    margin: 4px 0 0;
    font-size: 26px;
    line-height: 1.15;
}

h1,
.h5 {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.title-icon {
    width: 24px;
    height: 24px;
    color: var(--sf-primary);
}

.section-icon {
    width: 17px;
    height: 17px;
    color: var(--sf-primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 36px;
    border-radius: 7px;
    font-weight: 650;
}

.btn-icon {
    width: 16px;
    height: 16px;
}

.btn:not(.btn-primary):not(.btn-secondary):not(.btn-success):not(.btn-danger):not(.btn-warning):not(.btn-info):not(.btn-light):not(.btn-dark):not(.btn-link):not(.btn-outline-primary):not(.btn-outline-secondary):not(.btn-outline-success):not(.btn-outline-danger):not(.btn-outline-warning):not(.btn-outline-info):not(.btn-outline-light):not(.btn-outline-dark) {
    padding: 0 12px;
    border-color: var(--sf-line);
    background: white;
    color: var(--sf-ink);
}

.btn-primary {
    border-color: var(--sf-primary);
    background: var(--sf-primary);
    color: white;
}

.btn-primary:hover {
    border-color: var(--sf-primary-dark);
    background: var(--sf-primary-dark);
}

.btn:disabled {
    cursor: not-allowed;
    opacity: .55;
}

.table {
    width: 100%;
    margin-bottom: 0;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--sf-line);
    text-align: left;
    vertical-align: middle;
}

.table th {
    color: var(--sf-muted);
    background: #f8faf8;
    font-size: 12px;
    font-weight: 750;
}

.table > :not(caption) > * > * {
    border-bottom-color: var(--sf-line);
}

.nav-tabs {
    gap: 4px;
    padding: 12px 12px 0;
    border: 1px solid var(--sf-line);
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    background: var(--sf-panel);
}

.nav-tabs .nav-link {
    min-height: 40px;
    border-color: transparent;
    border-radius: 7px 7px 0 0;
    color: var(--sf-primary);
    font-weight: 700;
}

.nav-tabs .nav-link:hover {
    border-color: #edf2ef;
    background: #f8faf8;
    color: var(--sf-primary-dark);
}

.nav-tabs .nav-link.active {
    border-color: var(--sf-line) var(--sf-line) var(--sf-panel);
    background: var(--sf-panel);
    color: var(--sf-ink);
}

.nav-tabs + .tab-content {
    padding: 16px;
    border: 1px solid var(--sf-line);
    border-top: 0;
    border-radius: 0 0 8px 8px;
    background: var(--sf-panel);
    box-shadow: 0 6px 18px rgba(16, 35, 31, .05);
}

.badge {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    background: #e8f5ef;
    color: #11664e;
    font-size: 12px;
    font-weight: 700;
}

.field-icon {
    width: 14px;
    height: 14px;
    color: #719187;
}

.invalid-feedback {
    display: none;
    margin-top: 5px;
    color: var(--sf-danger);
    font-size: 12px;
    font-weight: 650;
}

.is-invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-feedback {
    display: block;
}

.badge-button {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border: 0;
    border-radius: 999px;
    background: #e8f5ef;
    color: #11664e;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
}

.badge-button.danger {
    background: #fff0ed;
    color: var(--sf-danger);
}

.alert {
    margin-bottom: 14px;
    border: 1px solid #b7d9ca;
    border-radius: 8px;
    background: #edf8f2;
    color: #11664e;
    padding: 11px 12px;
    font-weight: 650;
}

.alert.alert-danger {
    border-color: #f0c2bb;
    background: #fff0ed;
    color: var(--sf-danger);
}

.alert.alert-success {
    border-color: #b7d9ca;
    background: #edf8f2;
    color: #11664e;
}

.help-assistant-trigger {
    position: fixed;
    right: 24px;
    bottom: 58px;
    z-index: 1040;
    box-shadow: 0 12px 30px rgba(16, 35, 31, .22);
}

.help-assistant .offcanvas {
    width: min(100vw, 460px);
}

.wizard-section {
    display: grid;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--sf-line);
    border-radius: 8px;
    background: #fbfcfb;
}

.origin-wizard {
    overflow: hidden;
}

.wizard-progress {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
}

.wizard-step {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 8px 10px;
    border: 1px solid var(--sf-line);
    border-radius: 8px;
    background: white;
    color: var(--sf-muted);
    cursor: pointer;
    text-align: left;
}

.wizard-step span {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 99px;
    background: #eef2ef;
    color: var(--sf-muted);
    font-size: 12px;
    font-weight: 850;
}

.wizard-step strong {
    overflow: hidden;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wizard-step.active {
    border-color: #87c7b3;
    background: #eef8f3;
    color: #11664e;
}

.wizard-step.active span,
.wizard-step.done span {
    background: var(--sf-primary);
    color: white;
}

.wizard-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 16px;
    align-items: start;
}

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

.wizard-summary {
    position: sticky;
    top: 18px;
    display: grid;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--sf-line);
    border-radius: 8px;
    background: white;
}

.wizard-summary h2 {
    margin: 10px 0 6px;
    overflow-wrap: anywhere;
    font-size: 18px;
}

.wizard-summary p {
    margin: 0;
    color: var(--sf-muted);
    line-height: 1.45;
}

.wizard-summary dl {
    display: grid;
    gap: 10px;
    margin: 0;
}

.wizard-summary dl div {
    padding-top: 10px;
    border-top: 1px solid var(--sf-line);
}

.wizard-summary dt {
    color: var(--sf-muted);
    font-size: 12px;
    font-weight: 800;
}

.wizard-summary dd {
    margin: 3px 0 0;
    overflow-wrap: anywhere;
    font-weight: 750;
}

.wizard-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--sf-line);
}

.wizard-actions-left,
.wizard-actions-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wizard-actions-right {
    justify-content: flex-end;
}

.step-feedback {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border: 1px solid #f2c38c;
    border-radius: 8px;
    background: #fff8ed;
    color: #8a4b12;
}

.step-feedback strong {
    white-space: nowrap;
}

.step-feedback span {
    line-height: 1.35;
}

.segmented {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    gap: 4px;
    padding: 4px;
    border: 1px solid var(--sf-line);
    border-radius: 8px;
    background: white;
}

.segmented button {
    min-height: 34px;
    padding: 0 12px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: var(--sf-muted);
    cursor: pointer;
    font-weight: 800;
}

.segmented button.active {
    background: #e8f5ef;
    color: #11664e;
}

.segmented button:disabled {
    cursor: not-allowed;
    opacity: .45;
}

.summary-panel {
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px dashed #a7cabb;
    border-radius: 8px;
    background: white;
}

dialog.modal {
    width: min(760px, calc(100vw - 28px));
    max-height: calc(100vh - 48px);
    border: 1px solid var(--sf-line);
    border-radius: 8px;
    padding: 0;
    color: var(--sf-ink);
    box-shadow: 0 22px 70px rgba(16, 35, 31, .24);
}

dialog.modal::backdrop {
    background: rgba(16, 35, 31, .42);
}

.modal-head,
.modal-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--sf-line);
}

.modal-head h2 {
    margin: 0;
    font-size: 18px;
}

.modal-body {
    padding: 16px;
}

.modal-actions {
    justify-content: flex-end;
    border-top: 1px solid var(--sf-line);
    border-bottom: 0;
}

.icon-button {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid var(--sf-line);
    border-radius: 7px;
    background: white;
    color: var(--sf-muted);
    cursor: pointer;
    font-size: 18px;
    font-weight: 800;
}

.color-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 7px;
    border: 1px solid var(--sf-line);
    border-radius: 99px;
    vertical-align: -1px;
}

.auth-body {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 24px;
    background:
        linear-gradient(120deg, rgba(20, 120, 93, .12), rgba(18, 61, 90, .08)),
        var(--sf-bg);
}

.auth-card {
    width: min(100%, 420px);
    border: 1px solid var(--sf-line);
    border-radius: 8px;
    background: var(--sf-panel);
    padding: 22px;
    box-shadow: 0 18px 60px rgba(16, 35, 31, .12);
}

.auth-form {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.steps {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.step {
    flex: 1;
    padding: 9px 10px;
    border: 1px solid var(--sf-line);
    border-radius: 8px;
    background: white;
    color: var(--sf-muted);
    font-weight: 700;
}

.step.active {
    border-color: var(--sf-primary);
    color: var(--sf-primary);
    background: #eef8f3;
}

.container-map {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.pallet-slot {
    display: grid;
    min-height: 42px;
    place-items: center;
    border: 1px solid var(--sf-line);
    border-radius: 6px;
    background: #f8faf8;
    color: var(--sf-muted);
    font-weight: 750;
}

.pallet-slot.loaded {
    border-color: #87c7b3;
    background: #e8f5ef;
    color: #12684f;
}

.print-body {
    min-height: 100vh;
    background: white;
}

.label-sheet {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 24px;
}

.label-card {
    width: 380px;
    border: 2px solid #111;
    border-radius: 6px;
    background: white;
    padding: 16px;
    color: #111;
}

.label-head,
.label-grid {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 7px 10px;
}

.label-head {
    grid-template-columns: 1fr auto;
    padding-bottom: 10px;
    border-bottom: 1px solid #111;
}

.label-code {
    margin-top: 12px;
    text-align: center;
    font-size: 26px;
    font-weight: 850;
}

.label-barcode {
    margin: 8px 0 14px;
    padding: 10px 6px;
    border: 1px solid #111;
    text-align: center;
    font-family: "Courier New", monospace;
    font-size: 20px;
    letter-spacing: 0;
}

.label-grid span {
    color: #555;
    font-size: 12px;
    font-weight: 700;
}

.print-actions {
    margin-top: 16px;
    text-align: center;
}

@media print {
    .print-actions {
        display: none;
    }

    body {
        height: auto;
        overflow: visible;
    }

    .app-shell,
    .main,
    .content {
        display: block;
        height: auto;
        overflow: visible;
    }

    .label-sheet {
        min-height: auto;
        padding: 0;
    }
}

@media (max-width: 1000px) {
    .shell,
    .app-shell {
        grid-template-columns: 1fr;
    }

    .app-shell.sidebar-collapsed {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: sticky;
        top: 0;
        z-index: 20;
        padding: 10px 12px;
    }

    .sidebar-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .brand {
        padding: 6px 0;
        border-bottom: 0;
    }

    .menu-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 34px;
        padding: 0 12px;
        border: 1px solid rgba(255, 255, 255, .22);
        border-radius: 7px;
        color: white;
        font-weight: 750;
    }

    .sidebar-menu {
        display: none;
        max-height: calc(100vh - 66px);
        overflow: auto;
        padding: 8px 0 4px;
    }

    .sidebar-offcanvas .sidebar-menu {
        display: flex;
        max-height: none;
        padding-top: 8px;
    }

    .sidebar:has(.menu-toggle:checked) .sidebar-menu {
        display: block;
    }

    .wizard-layout {
        grid-template-columns: 1fr;
    }

    .wizard-progress {
        grid-template-columns: 1fr;
    }

    .wizard-summary {
        position: static;
    }

    .wizard-actions-left,
    .wizard-actions-right {
        width: 100%;
        justify-content: stretch;
    }

    .wizard-actions-left .btn,
    .wizard-actions-right .btn {
        flex: 1;
    }

    .step-feedback {
        align-items: flex-start;
        flex-direction: column;
    }

    .wizard-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .topbar {
        align-items: stretch;
        flex-direction: column;
    }

    .context,
    .topbar-actions {
        flex-wrap: wrap;
    }

    .top-search {
        min-width: 100%;
    }
}
