:root {
    --nivula-red: #DA291C;
    --ink: black;
    --ink-soft: #2A363A;
    --slate: #5D6C71;
    --porcelain: #EDEFEA;
    --linen: #FFFFFF;
    --rule: #DCE0D9;
    --green: #0F6B4F;
    --green-tint: #E4EFE9;
    --yolk: #C8860D;
    --yolk-tint: #FBEFD8;
    --r: 14px;
    --tap: 48px;
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent
}

html,
body {
    margin: 0;
    padding: 0
}

body {
    background: var(--porcelain);
    color: var(--ink);
    font-family: "Instrument Sans", system-ui, sans-serif;
    font-size: 15px;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    padding-bottom: calc(40px + env(safe-area-inset-bottom));
}

.wrap {
    max-width: 900px;
    margin: 0 auto
}

button {
    font: inherit;
    color: inherit;
    border: 0;
    background: none;
    cursor: pointer
}

input,
textarea {
    font: inherit;
    color: inherit
}

.mono {
    font-family: "DM Mono", ui-monospace, monospace
}

/* Blocco orientazione portrait via CSS: se il tablet/smartphone viene ruotato in
   landscape, il contenuto resta ruotato per apparire sempre in portrait */
@media (pointer: coarse) and (orientation: landscape) {
    html {
        transform: rotate(-90deg);
        transform-origin: left top;
        width: 100vh;
        height: 100vw;
        overflow-x: hidden;
        position: absolute;
        top: 100%;
        left: 0;
    }
}

.plate-num {
    font-family: "Archivo", sans-serif;
    font-variation-settings: "wdth"118, "wght"700;
    letter-spacing: .01em
}

/* ---------- masthead ---------- */
.masthead {
    padding: calc(18px + env(safe-area-inset-top)) 16px 18px;
    background: var(--nivula-red);
    color: #fff
}

.eyebrow {
    font-family: "DM Mono", monospace;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 10px;
}

.eyebrow>img {
    vertical-align: bottom;
}

.masthead h1 {
    font-family: "Archivo", sans-serif;
    font-variation-settings: "wdth"112, "wght"600;
    font-size: 26px;
    margin: 6px 0 0;
    letter-spacing: -.01em
}

h1.unselected {
    opacity: .50;
    cursor: pointer;
}

#datesSpan {
    gap: 20px;
    display: inline-flex;
}

.datebar {
    background: #E12D22;
    color: #fff;
    padding: 14px 0 12px
}

.datebar-head {
    font-size: 11.5px;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0 16px 9px
}

.week {
    width: 100%;
    display: flex;
    gap: 4px;
    padding: 0 12px
}

.d2 {
    flex: 1 1 0;
    min-width: 0;
    min-height: 54px;
    border: 0;
    background: none;
    color: #ffffffcc;
    font: inherit;
    border-radius: 10px;
    padding: 6px 2px;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    transition: background .15s
}

.d2 .dow {
    font-size: 10.5px;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap
}

.d2 .num {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.05
}

.d2 .mth {
    font-size: 8.5px;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 700;
    opacity: .8;
    margin-top: 1px
}

.d2:hover {
    background: #ffffff1f
}

.d2.on {
    color: #E12D22;
    background: #fff
}

.d2.on:hover {
    background: #fff
}

.d2.today::after {
    content: "";
    position: absolute;
    bottom: 5px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff
}

.d2.on.today::after {
    background: #E12D22
}

.d2:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px
}

.sync {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 6px;
    font-size: 12.5px;
    color: white;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #39C08A;
    flex: none
}

.tally {
    display: flex;
    align-items: flex-end;
    gap: 22px;
    margin-top: 20px
}

.tally-big {
    font-family: "Archivo", sans-serif;
    font-variation-settings: "wdth"120, "wght"700;
    font-size: 44px;
    line-height: .86;
    letter-spacing: -.02em
}

.tally-sub {
    font-size: 12.5px;
    color: #93A7A0;
    margin-top: 6px
}

.tally-sep {
    width: 1px;
    align-self: stretch;
    background: white;
}

.rail {
    display: flex;
    gap: 3px;
    margin-top: 18px
}

.rail i {
    flex: 1;
    height: 5px;
    border-radius: 2px;
    background: white;
    opacity: .35;
    transition: background .25s
}

.rail i.on {
    background: white;
    opacity: 100;
}

/* ---------- toolbar ---------- */
.toolbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(237, 239, 234, .94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--rule)
}

.search {
    padding: 10px 16px 0
}

.search input {
    width: 100%;
    height: 44px;
    border-radius: 11px;
    border: 1px solid var(--rule);
    background: var(--linen);
    padding: 0 14px;
    outline: none
}

.search input:focus {
    border-color: var(--ink);
    box-shadow: 0 0 0 3px rgba(16, 22, 25, .09)
}

.filters {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 16px;
    scrollbar-width: none
}

.filters::-webkit-scrollbar {
    display: none
}

.chip {
    white-space: nowrap;
    padding: 8px 13px;
    border-radius: 999px;
    border: 1px solid var(--rule);
    background: var(--linen);
    font-size: 13.5px;
    font-weight: 500;
    min-height: 38px
}

.chip b {
    font-family: "DM Mono", monospace;
    font-weight: 500;
    opacity: .55;
    margin-left: 5px
}

.chip.pressed {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff
}

.chip[aria-pressed="true"] b {
    opacity: .6
}

/* Loading animation */

.lds-roller,
.lds-roller div,
.lds-roller div:after {
    box-sizing: border-box;
}

.lds-roller {
    display: none;
    position: relative;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 50%;
    left: 0;
    z-index: 9999;
}

.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7.2px;
    height: 7.2px;
    border-radius: 50%;
    background: currentColor;
    margin: -3.6px 0 0 -3.6px;
}

.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
    top: 62.62742px;
    left: 62.62742px;
}

.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 67.71281px;
    left: 56px;
}

.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 70.90963px;
    left: 48.28221px;
}

.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
}

.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 70.90963px;
    left: 31.71779px;
}

.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 67.71281px;
    left: 24px;
}

.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 62.62742px;
    left: 17.37258px;
}

.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12.28719px;
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* --- il chip --- */
.account-chip {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;

    min-height: 36px;
    padding: 4px 12px 4px 4px;
    /* asimmetrico: a sinistra c'è già il cerchio */
    max-width: 52vw;

    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: #fff;

    font: inherit;
    /* i button non ereditano il font */
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1;

    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background .15s, transform .1s;
    float: right;
    top: -10px;
}

/* estende l'area toccabile senza ingrandire il chip */
.account-chip::after {
    content: "";
    position: absolute;
    inset: -6px -4px;
}

.account-chip__initials {
    flex: none;
    /* il cerchio non si deforma se il nome è lungo */
    width: 26px;
    height: 26px;
    border-radius: 50%;

    background: #fff;
    color: #E12D22;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .02em;
}

/* il nome: taglia con i puntini invece di allargare la testata */
.account-chip>span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* --- stati --- */
.account-chip:hover {
    background: rgba(255, 255, 255, .2)
}

.account-chip:active {
    background: rgba(255, 255, 255, .28);
    transform: scale(.97)
}

.account-chip:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px
}

/* ---------- list ---------- */
.list {
    padding: 14px 16px 0;
    display: grid;
    gap: 10px
}

@media(min-width:720px) {
    .list {
        grid-template-columns: 1fr 1fr
    }
}

.card {
    background: var(--linen);
    border: 1px solid var(--rule);
    border-radius: var(--r);
    overflow: hidden
}

.card.done {
    background: #F8FAF7
}

.card-top {
    display: flex;
    gap: 12px;
    padding: 12px;
    align-items: flex-start;
    width: 100%;
    text-align: left
}

.plate {
    flex: none;
    min-width: 56px;
    height: 44px;
    border-radius: 9px;
    background: var(--nivula-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    padding: 0 8px
}

.done .plate {
    background: var(--green)
}

.included .plate {
    background: #e86d92;
}

.extra .plate {
    background: var(--nivula-red);
}

.expected .plate {
    background: var(--porcelain);
    color: black;
}

.checked-out .plate {
    background: #909ea3;
}

.who {
    flex: 1;
    min-width: 0
}

.name {
    font-weight: 600;
    font-size: 15.5px;
    letter-spacing: -.005em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.meta {
    font-size: 12.5px;
    color: var(--slate);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 7px
}

.tag {
    font-size: 11px;
    letter-spacing: .02em;
    padding: 3px 7px;
    border-radius: 5px;
    background: var(--porcelain);
    color: var(--ink-soft);
    font-weight: 500
}

.tag.inc {
    background: var(--green-tint);
    color: var(--green)
}

.tag.out {
    background: var(--yolk-tint);
    color: var(--yolk)
}

.recentExtra {
    background: #feedff;
    color: #c108cc;
}

.tag.first {
    background: #E7ECF5;
    color: #2C4A80
}

/* result block on done cards */
.result {
    flex: none;
    text-align: right
}

.result .n {
    font-family: "Archivo", sans-serif;
    font-variation-settings: "wdth"118, "wght"700;
    font-size: 26px;
    line-height: 1;
    color: var(--green)
}

.result .n.zero {
    color: var(--slate)
}

.result .t {
    font-family: "DM Mono", monospace;
    font-size: 11px;
    color: var(--slate);
    margin-top: 3px
}

/* keypad */
.pad {
    border-top: 1px solid var(--rule);
    padding: 11px 12px 12px
}

.pad-label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 12px;
    color: var(--slate);
    margin-bottom: 9px
}

.pad-label b {
    color: var(--ink);
    font-weight: 600
}

.keys {
    display: flex;
    gap: 6px;
    flex-wrap: wrap
}

.key {
    flex: 1 1 40px;
    min-width: 40px;
    height: var(--tap);
    border-radius: 10px;
    border: 1px solid var(--rule);
    background: var(--linen);
    font-family: "Archivo", sans-serif;
    font-variation-settings: "wdth"112, "wght"600;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.key.selected {
    background: #DCE0D9;
}

.key.exp {
    border-color: var(--ink);
    border-width: 2px
}

.key.exp::after {
    content: "guests";
    position: absolute;
    bottom: 3px;
    font-family: "Instrument Sans", sans-serif;
    font-size: 8px;
    font-variation-settings: normal;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--slate)
}

.key.editing::after {
    content: "selected";
    position: absolute;
    bottom: 3px;
    font-family: "Instrument Sans", sans-serif;
    font-size: 8px;
    font-variation-settings: normal;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--slate)
}

.key:active {
    transform: scale(.96)
}

.key.sel {
    background: var(--green);
    border-color: var(--green);
    color: #fff
}

/* footer row of card */
.cardfoot {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--rule);
    padding: 0 12px
}

.foot-btn {
    flex: 1;
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13.5px;
    color: var(--slate);
    font-weight: 500;
    text-align: left
}

.foot-btn.has {
    color: var(--ink)
}

.foot-btn span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.edit {
    min-height: 44px;
    padding-left: 12px;
    border-left: 1px solid var(--rule);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--green)
}

.charge {
    font-family: "DM Mono", monospace;
    font-size: 11px;
    padding: 7px 12px;
    border-top: 1px solid var(--rule);
    color: var(--slate)
}

.charge.warn {
    background: var(--yolk-tint);
    color: #8A5C05
}

.empty {
    text-align: center;
    color: var(--slate);
    padding: 48px 24px;
    font-size: 14px
}

/* ---------- Scrim Logout ---------- */
.scrim {
    position: fixed;
    inset: 0;
    background: #101619;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
    z-index: 40;
}

.scrim.is-open {
    opacity: .45;
    pointer-events: auto
}

.confirm-dialog {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 50;
    width: min(330px, calc(100vw - 40px));

    background: #fff;
    border-radius: 18px;
    padding: 22px 20px 16px;
    text-align: center;
    box-shadow: 0 24px 60px rgba(16, 22, 25, .33);

    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -46%) scale(.96);
    transition: opacity .2s, transform .2s;
}

.confirm-dialog.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.confirm-dialog__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    margin: 0 auto 12px;

    background: #E12D22;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    font-weight: 700;
    letter-spacing: .02em;
}

.confirm-dialog__title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px;
    letter-spacing: -.01em
}

.confirm-dialog__body {
    font-size: 13.5px;
    color: #5D6C71;
    margin: 0;
    line-height: 1.45
}

.confirm-dialog__body strong {
    color: #101619;
    font-weight: 600
}

.confirm-dialog__actions {
    display: flex;
    gap: 8px;
    margin-top: 20px
}

.confirm-dialog__actions button {
    flex: 1;
    min-height: 50px;
    border: 0;
    border-radius: 12px;
    font: inherit;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
}

.btn-quiet {
    background: #EDEFEA;
    color: #101619
}

.btn-danger {
    background: #101619;
    color: #fff
}

.btn-danger:disabled {
    opacity: .6;
    cursor: default
}

.confirm-dialog__meta {
    font-size: 10.5px;
    color: #98A2A6;
    font-family: ui-monospace, monospace;
    margin-top: 14px;
}

body.no-scroll {
    overflow: hidden
}

/* ---------- sheet ---------- */
.scrim {
    position: fixed;
    inset: 0;
    background: rgba(16, 22, 25, .45);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
    z-index: 40
}

.scrim.on {
    opacity: 1;
    pointer-events: auto
}

.sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    background: var(--linen);
    border-radius: 18px 18px 0 0;
    padding: 8px 16px calc(16px + env(safe-area-inset-bottom));
    transform: translateY(102%);
    transition: transform .26s cubic-bezier(.32, .72, 0, 1);
    max-height: 88vh;
    overflow: auto;
    max-width: 900px;
    margin: 0 auto
}

.sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    background: #fff;
    border-radius: 18px 18px 0 0;
    max-height: 88vh;
    display: flex;
    flex-direction: column;

    transform: translateY(102%);
    transition: transform .28s cubic-bezier(.32, .72, 0, 1);
}

.sheet.is-open {
    transform: none
}

.sheet.is-dragging {
    transition: none
}

/* il dito comanda, non l'animazione */

.sheet__handle {
    flex: none;
    cursor: grab;
    touch-action: none;
    /* ← senza questa il browser scrolla la pagina */
    -webkit-tap-highlight-color: transparent;
}

.sheet__handle:active {
    cursor: grabbing
}

.sheet__handle::before {
    content: "";
    display: block;
    width: 38px;
    height: 5px;
    border-radius: 3px;
    background: #D3D8D1;
    margin: 0 auto;
}

.sheet__body {
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 8px 16px 24px;
}

.sheet.on {
    transform: none
}

.grab {
    width: 38px;
    height: 4px;
    border-radius: 2px;
    background: var(--rule);
    margin: 0 auto 14px
}

.sheet h2 {
    font-family: "Archivo", sans-serif;
    font-variation-settings: "wdth"112, "wght"650;
    font-size: 19px;
    margin: 0
}

.sheet .sub {
    font-size: 13px;
    color: var(--slate);
    margin: 3px 0 16px
}

.sheet-label {
    font-size: 12px;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: var(--slate);
    font-weight: 600;
    margin: 0 0 8px
}

.qtags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 18px
}

.qtag {
    padding: 9px 12px;
    border-radius: 9px;
    border: 1px solid var(--rule);
    font-size: 13.5px;
    min-height: 40px
}

.qtag.pressed {
    /* background: var(--ink);
    border-color: var(--ink); */
    background: var(--green);
    border-color: var(--green);
    color: #fff
}

.qtag.saved {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff
}

.sheet textarea {
    width: 100%;
    min-height: 96px;
    border-radius: 11px;
    border: 1px solid var(--rule);
    padding: 11px;
    resize: vertical;
    outline: none;
    line-height: 1.45
}

.sheet textarea:focus {
    border-color: var(--ink);
    box-shadow: 0 0 0 3px rgba(16, 22, 25, .09)
}

.save {
    width: 100%;
    height: 52px;
    border-radius: 12px;
    background: var(--green);
    color: #fff;
    font-weight: 600;
    font-size: 15.5px;
    margin-top: 14px
}

.guestinfo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0 0 18px;
    font-size: 13px
}

.guestinfo div {
    background: var(--porcelain);
    border-radius: 9px;
    padding: 9px 11px
}

.guestinfo dt {
    font-size: 10.5px;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--slate);
    font-weight: 600;
    margin: 0 0 2px
}

.guestinfo dd {
    margin: 0;
    font-weight: 500
}

/* ---- dialogo di conferma ---- */
.dlg {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -46%) scale(.96);
    z-index: 70;
    width: min(340px, calc(100vw - 40px));
    background: var(--linen);
    border-radius: 18px;
    padding: 22px 20px 16px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: .2s cubic-bezier(.32, .72, 0, 1);
    box-shadow: 0 24px 60px rgba(16, 22, 25, .3)
}

.dlg.on {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1)
}

.dlg-room {
    font-family: "DM Mono", monospace;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--slate)
}

.dlg-n {
    font-family: "Archivo", sans-serif;
    font-variation-settings: "wdth"120, "wght"700;
    font-size: 52px;
    line-height: 1;
    margin: 8px 0 2px;
    letter-spacing: -.02em
}

.dlg-q {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 4px
}

.dlg-guest {
    font-size: 13px;
    color: var(--slate);
    margin: 0
}

.dlg-flag {
    margin: 14px 0 0;
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--yolk-tint);
    color: #8A5C05;
    font-size: 12.5px;
    line-height: 1.35;
    text-align: left
}

.dlg-flag.calm {
    background: var(--porcelain);
    color: var(--ink-soft)
}

.dlg-acts {
    display: flex;
    gap: 8px;
    margin-top: 18px
}

.dlg-acts button {
    flex: 1;
    height: 50px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px
}

.btn-cancel {
    background: var(--porcelain);
    color: var(--ink)
}

.btn-ok {
    background: var(--green);
    color: #fff
}

/* toast */
.toast {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    z-index: 60;
    background: var(--ink);
    color: #fff;
    border-radius: 12px;
    padding: 13px 16px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(14px);
    transition: .22s;
    pointer-events: none;
    max-width: 520px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(16, 22, 25, .25)
}

.toast.on {
    opacity: 1;
    transform: none
}

@media (prefers-reduced-motion:reduce) {
    * {
        transition: none !important;
        animation: none !important
    }
}

:focus-visible {
    outline: 3px solid #39C08A;
    outline-offset: 2px
}

@media only screen and (max-width: 600px) {
    .tally {
        gap: 12px !important;
    }

    .tally-big {
        font-size: 19px !important;
    }
}