:root {
    --operator-green-900: #183f2a;
    --operator-green-700: #1f7a4d;
    --operator-green-600: #2f9b61;
    --operator-gold-500: #e0a928;
    --operator-ink: #263328;
    --operator-muted: #65756b;
    --operator-line: #dde8dc;
    --operator-bg: #f3f8ef;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(224, 169, 40, .18), transparent 28%),
        radial-gradient(circle at bottom right, rgba(31, 122, 77, .16), transparent 30%),
        linear-gradient(135deg, #fffaf0 0%, var(--operator-bg) 58%, #eef8ef 100%);
    color: var(--operator-ink);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: .95rem;
}

a {
    color: var(--operator-green-700);
    font-weight: 700;
}

a:hover {
    color: var(--operator-green-600);
}

[v-cloak] {
    display: none;
}

.btn {
    font-weight: 700;
}

.btn-success {
    background-color: var(--operator-green-700);
    border-color: var(--operator-green-700);
}

.btn-success:hover,
.btn-success:focus {
    background-color: var(--operator-green-600);
    border-color: var(--operator-green-600);
}

.form-control,
.form-select {
    border-color: var(--operator-line);
    border-radius: .9rem;
}

.form-floating > label {
    color: #718177;
}

.field-block {
    margin-bottom: 1rem;
}

.field-label {
    display: block;
    margin-bottom: .45rem;
    color: #425247;
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.35;
}

.field-help {
    margin-top: .35rem;
    color: #6b7b70;
    font-size: .82rem;
    line-height: 1.35;
}

.operator-shell {
    min-height: 100vh;
}

.operator-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: linear-gradient(135deg, var(--operator-green-900) 0%, var(--operator-green-700) 78%);
    box-shadow: 0 .75rem 2rem rgba(24, 63, 42, .18);
}

.operator-header-inner {
    min-height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.operator-logo {
    max-width: 8rem;
    max-height: 3.25rem;
    display: block;
}

.operator-user {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .7rem;
    color: #fff;
}

.operator-user-name {
    max-width: 9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: .86rem;
    font-weight: 700;
}

.operator-icon-button {
    width: 2.55rem;
    height: 2.55rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    text-decoration: none;
}

.operator-icon-button:hover {
    color: #fff;
    background: rgba(255, 255, 255, .2);
}

.operator-content {
    min-height: calc(100vh - 4.5rem);
    padding: 1rem 0 2rem;
}

.operator-page-head {
    margin-bottom: 1rem;
}

.operator-kicker {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--operator-green-700);
    font-size: .82rem;
    font-weight: 800;
}

.operator-title {
    margin: .3rem 0 0;
    color: var(--operator-green-900);
    font-size: clamp(1.45rem, 7vw, 2rem);
    line-height: 1.12;
    font-weight: 850;
}

.operator-subtitle {
    max-width: 40rem;
    margin: .55rem 0 0;
    color: var(--operator-muted);
    line-height: 1.5;
}

.operator-panel {
    border: 1px solid rgba(221, 232, 220, .88);
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 1rem 2.5rem rgba(39, 55, 40, .1);
    overflow: hidden;
    max-width: 450px;
    margin: auto;
}

.operator-panel-head {
    background: linear-gradient(135deg, var(--operator-green-700) 0%, var(--operator-green-600) 62%, var(--operator-gold-500) 100%);
    color: #fff;
    padding: 1rem;
}

.operator-panel-head h2,
.operator-panel-head p {
    margin: 0;
}

.operator-panel-head h2 {
    font-size: 1.12rem;
    font-weight: 800;
}

.operator-panel-head p {
    margin-top: .25rem;
    opacity: .9;
}

.operator-action-list {
    display: grid;
    gap: .75rem;
    padding: .85rem;
}

.operator-action {
    min-height: 5.7rem;
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: .9rem;
    border: 1px solid var(--operator-line);
    border-radius: .9rem;
    background: #fff;
    color: var(--operator-ink);
    text-decoration: none;
    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.operator-action:hover,
.operator-action:focus {
    color: var(--operator-ink);
    transform: translateY(-2px);
    border-color: rgba(31, 122, 77, .45);
    box-shadow: 0 .75rem 1.75rem rgba(31, 122, 77, .12);
}

.operator-action-icon {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 999px;
    background: #eef9f1;
    color: var(--operator-green-700);
    font-size: 1.35rem;
}

.operator-action-title {
    display: block;
    color: var(--operator-green-900);
    font-size: 1rem;
    font-weight: 850;
}

.operator-action-copy {
    display: block;
    margin-top: .18rem;
    color: var(--operator-muted);
    font-size: .88rem;
    line-height: 1.35;
}

.breadcrump {
    margin: -1rem 0 1rem;
    padding: 1rem 0;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 .5rem 1.5rem rgba(39, 55, 40, .08);
}

.card {
    border-radius: 1rem;
}

.meal-choice-card {
    border: 1px solid rgba(221, 232, 220, .88) !important;
}

.meal-choice-card.is-unavailable {
    background: rgba(248, 251, 247, .78);
}

.meal-choice-message {
    min-height: 2.6rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem .8rem;
    border-radius: .85rem;
    font-size: .93rem;
    font-weight: 800;
    line-height: 1.3;
}

.meal-choice-message i {
    flex: 0 0 auto;
    font-size: 1.1rem;
}

.meal-choice-message.is-open {
    background: #eef9f1;
    color: var(--operator-green-700);
}

.meal-choice-message.is-upcoming {
    background: #fff3cd;
    color: #7a5a00;
}

.meal-choice-message.is-closed {
    background: #eceff1;
    color: #4f5b62;
}

.alert {
    border-radius: .9rem;
}

#toast-container {
    padding-top: 20px !important;
}

#toast-container > div {
    opacity: 1;
}

.blockUI.blockOverlay {
    z-index: 100000 !important;
}

.blockUI.blockMsg {
    z-index: 101000 !important;
}

@media (min-width: 768px) {
    .operator-content {
        
    }

    .operator-action-list {
        padding: 1rem;
    }

    .operator-action {
        min-height: 6.1rem;
    }

    .operator-user-name {
        max-width: 16rem;
    }
}
