:root {
    --bg: #040506;
    --surface: #0c1112;
    --surface-2: #151a1b;
    --surface-3: #101617;
    --text: #ffffff;
    --muted: #95a1a5;
    --line: rgba(157, 255, 46, 0.16);
    --line-strong: rgba(157, 255, 46, 0.4);
    --brand: #9dff2e;
    --brand-soft: rgba(157, 255, 46, 0.18);
    --brand-glow: rgba(157, 255, 46, 0.22);
    --danger: #d63a3a;
    --danger-soft: rgba(214, 58, 58, 0.16);
    --blue: #2b68f6;
    --blue-soft: rgba(43, 104, 246, 0.18);
    --green: #32c659;
    --green-soft: rgba(50, 198, 89, 0.16);
    --yellow: #efd44b;
    --shadow: 0 22px 60px rgba(0, 0, 0, 0.46);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    color-scheme: dark;
}

body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(157, 255, 46, 0.16), transparent 26%),
        radial-gradient(circle at top right, rgba(43, 104, 246, 0.1), transparent 22%),
        linear-gradient(180deg, #040506 0%, #090d0e 100%);
}

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

.page {
    min-height: 100vh;
    padding: 32px 16px 48px;
}

.shell {
    max-width: 1100px;
    margin: 0 auto;
}

.shell.narrow {
    max-width: 820px;
}

.shell.wide {
    max-width: 1280px;
}

.shell.order-shell {
    max-width: 720px;
}

.hero,
.card,
.flash {
    position: relative;
    background: linear-gradient(145deg, rgba(12, 17, 18, 0.95), rgba(21, 26, 27, 0.95));
    border: 1px solid rgba(157, 255, 46, 0.12);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
}

.hero::before,
.card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(157, 255, 46, 0.06), transparent 28%, transparent 72%, rgba(43, 104, 246, 0.08));
}

.hero,
.card {
    padding: 28px;
}

.eyebrow {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    color: var(--brand);
    font-weight: 700;
}

h1,
h2 {
    margin: 0;
    letter-spacing: -0.03em;
}

.lead {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.6;
    max-width: 60ch;
}

.button-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.big-action,
.button-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 18px;
    border: 1px solid transparent;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.big-action {
    min-height: 180px;
    padding: 24px;
    background: linear-gradient(180deg, rgba(12, 17, 18, 0.98), rgba(21, 26, 27, 0.98));
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    border-color: rgba(157, 255, 46, 0.1);
}

.big-action.primary,
.button-link {
    background: linear-gradient(135deg, var(--brand) 0%, #bcff70 100%);
    color: #040506;
    box-shadow: 0 14px 34px rgba(157, 255, 46, 0.22);
}

.big-action:hover,
.button-link:hover {
    transform: translateY(-2px);
}

.big-action:not(.primary):hover {
    border-color: var(--line-strong);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.56);
}

.action-title {
    font-size: 1.35rem;
    font-weight: 700;
}

.action-copy,
.muted,
.slot-meta,
.slot-notes {
    color: var(--muted);
}

.big-action.primary .action-copy,
.button-link-muted {
    color: inherit;
}

.page-header,
.section-heading,
.picker-row,
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.picker-card,
.empty-state,
.schedule-section,
.flash {
    margin-top: 20px;
}

.date-picker-form label,
.session-form label span {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(157, 255, 46, 0.12);
    border-radius: 14px;
    padding: 12px 14px;
    font: inherit;
    color: var(--text);
    background: rgba(4, 5, 6, 0.72);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.01);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--line-strong);
    box-shadow: 0 0 0 3px rgba(157, 255, 46, 0.12);
}

input::placeholder,
textarea::placeholder {
    color: #627074;
}

.button-link {
    padding: 12px 18px;
    font-weight: 800;
}

.button-link.small {
    padding: 10px 12px;
    font-size: 0.9rem;
}

.button-link-muted {
    background: linear-gradient(180deg, rgba(12, 17, 18, 0.98), rgba(21, 26, 27, 0.98));
    color: var(--text);
    border-color: rgba(157, 255, 46, 0.14);
    box-shadow: none;
}

.schedule-table-wrapper {
    margin-top: 18px;
    overflow-x: auto;
}

.schedule-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
}

.schedule-table th {
    text-align: left;
    color: var(--muted);
    font-size: 0.95rem;
    padding: 0 10px 4px;
    font-weight: 600;
}

.schedule-table td {
    vertical-align: top;
    padding: 0 10px;
}

.time-cell {
    width: 110px;
    font-weight: 700;
    color: var(--brand);
    white-space: nowrap;
    padding-top: 18px;
}

.slot-card {
    min-width: 210px;
    background: linear-gradient(180deg, rgba(12, 17, 18, 0.95), rgba(16, 22, 23, 0.95));
    border: 1px dashed rgba(157, 255, 46, 0.16);
    border-radius: 18px;
    padding: 16px;
}

.slot-card.filled {
    border-style: solid;
    border-color: rgba(157, 255, 46, 0.14);
}

.slot-card.next-round {
    background: linear-gradient(180deg, rgba(18, 23, 31, 0.98), rgba(12, 17, 26, 0.98));
    border-color: rgba(43, 104, 246, 0.4);
}

.slot-label,
.slot-title {
    margin: 0 0 8px;
    font-weight: 700;
}

.slot-title {
    color: var(--text);
}

.tag-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 10px 0;
}

.tag {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand);
    border: 1px solid rgba(157, 255, 46, 0.14);
    font-size: 0.78rem;
    font-weight: 700;
}

.tag-soft {
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
    border-color: rgba(255, 255, 255, 0.06);
}

.session-form {
    margin-top: 18px;
}

.slot-summary,
.subsection {
    margin: 18px 0 22px;
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(16, 22, 23, 0.96), rgba(12, 17, 18, 0.96));
    border: 1px solid rgba(157, 255, 46, 0.1);
}

.slot-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.slot-summary-label {
    display: block;
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 6px;
}

.subsection h2 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.section-copy p {
    margin: 0 0 16px;
    color: var(--muted);
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.nested-section {
    margin-top: 14px;
}

.span-2 {
    grid-column: span 2;
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(157, 255, 46, 0.06);
    border: 1px solid rgba(157, 255, 46, 0.08);
    font-weight: 600;
}

.checkbox-row input[type="checkbox"] {
    width: auto;
    transform: scale(1.1);
    accent-color: var(--brand);
}

.field-error {
    display: block;
    margin-top: 8px;
    color: #ff7e7e;
}

.is-hidden {
    display: none;
}

.error-box,
.flash.success {
    padding: 16px 18px;
    border-radius: 16px;
}

.error-box {
    background: var(--danger-soft);
    border: 1px solid rgba(214, 58, 58, 0.28);
    color: #ff9a9a;
}

.flash.success {
    background: var(--green-soft);
    border: 1px solid rgba(50, 198, 89, 0.28);
    color: #a7f0bc;
}

@media (max-width: 860px) {
    .page-header,
    .section-heading,
    .picker-row,
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .field-grid {
        grid-template-columns: 1fr;
    }

    .span-2 {
        grid-column: auto;
    }

    .slot-summary {
        grid-template-columns: 1fr;
    }
}

.flash.error {
    background: var(--danger-soft);
    border: 1px solid rgba(214, 58, 58, 0.28);
    color: #ff9a9a;
}

.toolbar-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
}

.toggle-stack {
    display: grid;
    gap: 16px;
}

.toggle-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.segmented-control {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
}

.segment-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 14px;
    border: 1px solid rgba(157, 255, 46, 0.12);
    background: rgba(4, 5, 6, 0.58);
    color: var(--text);
    font-weight: 700;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.segment-button.active {
    background: linear-gradient(135deg, var(--brand) 0%, #bcff70 100%);
    color: #040506;
    box-shadow: 0 14px 34px rgba(157, 255, 46, 0.18);
}

.segment-button:hover {
    transform: translateY(-1px);
}

.schedule-table-wide th:last-child,
.schedule-table-wide td:last-child {
    min-width: 220px;
}

.slot-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}

.slot-subtitle,
.slot-title,
.slot-meta {
    margin: 0 0 6px;
}

.slot-subtitle {
    color: var(--brand);
    font-weight: 700;
}

.slot-meta.strong {
    color: var(--text);
    font-weight: 700;
}

.slot-actions,
.form-secondary-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.slot-actions form,
.form-secondary-actions form {
    margin: 0;
}

.resource-cell {
    min-width: 220px;
}

.resource-card {
    min-height: 100%;
    border-radius: 18px;
    padding: 16px;
    background: linear-gradient(180deg, rgba(20, 31, 17, 0.95), rgba(14, 22, 13, 0.95));
    border: 1px solid rgba(157, 255, 46, 0.16);
}

.resource-line {
    margin: 0 0 10px;
    color: var(--text);
    font-weight: 600;
}

.move-toggle {
    border: 1px solid rgba(157, 255, 46, 0.2);
    border-radius: 999px;
    padding: 8px 12px;
    font: inherit;
    font-weight: 700;
    color: var(--text);
    background: rgba(157, 255, 46, 0.08);
    cursor: pointer;
}

.move-armed {
    animation: wiggle 0.24s ease-in-out 3;
    border-color: rgba(43, 104, 246, 0.45) !important;
    box-shadow: 0 0 0 3px rgba(43, 104, 246, 0.12);
}

.empty-slot.drop-ready {
    border-color: rgba(43, 104, 246, 0.5);
    background: linear-gradient(180deg, rgba(17, 23, 33, 0.96), rgba(10, 15, 22, 0.96));
}

.button-link-danger {
    background: linear-gradient(135deg, #ff6b6b 0%, #e03d3d 100%);
    color: #040506;
    box-shadow: 0 14px 34px rgba(214, 58, 58, 0.24);
}

.field-hint {
    display: block;
    margin-top: 8px;
    color: var(--muted);
}

.round-card {
    padding: 16px;
    border-radius: 16px;
    background: rgba(4, 5, 6, 0.4);
    border: 1px solid rgba(157, 255, 46, 0.08);
}

.round-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.hero-clock {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(16, 22, 23, 0.96), rgba(8, 12, 13, 0.96));
    border: 1px solid rgba(157, 255, 46, 0.12);
}

.hero-date {
    margin: 0;
}

.hero-time {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 800;
    color: var(--brand);
}

.header-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.search-card,
.status-toolbar,
.kitchen-summary-card,
.notifications-card {
    margin-top: 20px;
}

.search-form {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: end;
}

.search-results {
    margin-top: 22px;
}

.result-grid,
.kitchen-summary-grid,
.consent-status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.result-card h3,
.summary-block h3,
.flow-card h3 {
    margin: 0 0 8px;
}

.result-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.result-line {
    margin: 0 0 8px;
    color: var(--muted);
}

.status-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.status-board {
    margin-top: 22px;
    overflow-x: auto;
}

.timeline-axis,
.timeline-lane {
    display: grid;
    grid-template-columns: 170px repeat(var(--slot-count), minmax(140px, 1fr));
    gap: 12px;
    min-width: max-content;
}

.timeline-axis {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(157, 255, 46, 0.08);
}

.timeline-spacer,
.timeline-slot {
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(4, 5, 6, 0.42);
    border: 1px solid rgba(157, 255, 46, 0.08);
    color: var(--muted);
    font-weight: 700;
}

.timeline-lane {
    align-items: stretch;
    margin-top: 16px;
}

.lane-label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(16, 22, 23, 0.98), rgba(10, 15, 16, 0.98));
    border: 1px solid rgba(157, 255, 46, 0.12);
}

.lane-kicker {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand);
    font-weight: 700;
}

.lane-grid {
    display: grid;
    grid-template-columns: repeat(var(--slot-count), minmax(140px, 1fr));
    gap: 12px;
    min-height: 172px;
}

.empty-lane-note {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    border-radius: 18px;
    border: 1px dashed rgba(157, 255, 46, 0.12);
    color: var(--muted);
}

.flow-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 172px;
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(157, 255, 46, 0.14);
    background: linear-gradient(180deg, rgba(16, 22, 23, 0.98), rgba(9, 13, 14, 0.98));
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.32);
    overflow: hidden;
    animation: cardRise 0.5s ease both;
}

.flow-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(157, 255, 46, 0.84), rgba(43, 104, 246, 0.82));
}

.flow-card[data-tone="active"] {
    animation: pulseCard 2.4s ease-in-out infinite;
}

.flow-card[data-tone="waiting"] {
    border-style: dashed;
}

.flow-card-top,
.flow-status {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.flow-track,
.flow-start,
.flow-tag {
    font-size: 0.78rem;
    font-weight: 700;
}

.flow-track {
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.flow-start,
.flow-tag {
    color: var(--muted);
}

.flow-subtitle {
    margin: 0;
}

.flow-status strong {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(157, 255, 46, 0.1);
    color: var(--brand);
}

.kitchen-board {
    display: grid;
    gap: 22px;
    margin-top: 24px;
}

.kitchen-bucket {
    display: grid;
    gap: 14px;
}

.kitchen-time {
    margin: 0;
    color: var(--brand);
}

.kitchen-ticket {
    border-radius: 22px;
    border: 1px solid rgba(157, 255, 46, 0.12);
    background: linear-gradient(180deg, rgba(12, 17, 18, 0.98), rgba(18, 26, 27, 0.98));
    box-shadow: var(--shadow);
}

.kitchen-ticket summary {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    list-style: none;
}

.kitchen-ticket summary::-webkit-details-marker {
    display: none;
}

.kitchen-ticket[data-tone="active"] {
    border-color: rgba(43, 104, 246, 0.32);
    box-shadow: 0 0 0 1px rgba(43, 104, 246, 0.12), var(--shadow);
}

.kitchen-ticket[data-tone="warning"] {
    border-color: rgba(239, 212, 75, 0.34);
}

.kitchen-ticket[data-tone="ready"] {
    border-color: rgba(50, 198, 89, 0.34);
}

.kitchen-ticket-body {
    padding: 0 20px 20px;
}

.order-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 16px;
}

.summary-list,
.notification-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.summary-list li,
.notification-row,
.player-order-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-list li + li,
.notification-row + .notification-row,
.player-order-row + .player-order-row {
    margin-top: 10px;
}

.notification-row strong {
    color: var(--brand);
    min-width: 54px;
}

.summary-block {
    padding: 18px;
    border-radius: 20px;
    background: rgba(4, 5, 6, 0.38);
    border: 1px solid rgba(157, 255, 46, 0.08);
}

.order-link-section {
    margin-top: 22px;
}

.player-order-list {
    margin-top: 18px;
}

.player-order-row strong {
    color: var(--text);
}

.order-table {
    display: grid;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.order-table-head,
.order-table-row {
    display: grid;
    grid-template-columns: 44px minmax(140px, 1.2fr) minmax(130px, 1fr) minmax(120px, 0.95fr);
    gap: 12px;
    align-items: center;
    min-width: 560px;
}

.order-table-head {
    padding: 0 12px;
    color: var(--muted);
    font-weight: 700;
}

.order-table-row {
    padding: 14px;
    border-radius: 18px;
    background: rgba(4, 5, 6, 0.38);
    border: 1px solid rgba(157, 255, 46, 0.08);
}

.row-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand);
    font-weight: 800;
}

.contact-consent-panel {
    display: grid;
    gap: 16px;
    margin-top: 22px;
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(16, 22, 23, 0.96), rgba(8, 12, 13, 0.96));
    border: 1px solid rgba(157, 255, 46, 0.1);
}

.email-consent-list,
.customer-emails-form {
    display: grid;
    gap: 16px;
}

.email-consent-row {
    display: grid;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(4, 5, 6, 0.38);
    border: 1px solid rgba(157, 255, 46, 0.08);
}

.email-row-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.email-row-head h2 {
    font-size: 1rem;
}

.contact-consent-panel .section-copy p {
    margin-bottom: 0;
}

.consent-row {
    display: grid;
    gap: 8px;
}

.text-button,
.dialog-close {
    border: 0;
    font: inherit;
    cursor: pointer;
}

.text-button {
    justify-self: start;
    padding: 0;
    color: var(--brand);
    background: transparent;
    font-weight: 800;
}

.policy-dialog {
    width: min(720px, calc(100vw - 32px));
    max-height: min(760px, calc(100vh - 32px));
    padding: 0;
    color: var(--text);
    background: linear-gradient(145deg, rgba(12, 17, 18, 0.98), rgba(21, 26, 27, 0.98));
    border: 1px solid rgba(157, 255, 46, 0.22);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.policy-dialog::backdrop {
    background: rgba(0, 0, 0, 0.72);
}

.policy-dialog-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
    border-bottom: 1px solid rgba(157, 255, 46, 0.12);
}

.dialog-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    border-radius: 999px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}

.policy-dialog-body {
    display: grid;
    gap: 10px;
    padding: 20px 22px 24px;
    overflow-y: auto;
    max-height: calc(100vh - 180px);
}

.policy-dialog-body h3,
.policy-dialog-body p {
    margin: 0;
}

.policy-dialog-body h3 {
    color: var(--brand);
}

.policy-dialog-body p {
    color: var(--muted);
    line-height: 1.55;
}

.kitchen-toolbar-copy {
    display: flex;
    align-items: end;
}

@keyframes cardRise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseCard {
    0%,
    100% {
        box-shadow: 0 18px 32px rgba(0, 0, 0, 0.32);
    }
    50% {
        box-shadow: 0 18px 32px rgba(43, 104, 246, 0.32);
    }
}

@keyframes wiggle {
    0% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    50% { transform: translateX(3px); }
    75% { transform: translateX(-2px); }
    100% { transform: translateX(0); }
}

@media (max-width: 860px) {
    .toolbar-grid {
        grid-template-columns: 1fr;
    }

    .slot-actions,
    .form-secondary-actions,
    .segmented-control {
        flex-direction: column;
    }

    .hero-clock,
    .search-form,
    .order-columns {
        grid-template-columns: 1fr;
    }
}
