/* /Components/Layout/MainLayout.razor.rz.scp.css */
.admin-shell[b-zrhe85itav] {
    display: flex;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background: #f4efe5;
}

.admin-main[b-zrhe85itav] {
    flex: 1;
    overflow-y: auto;
    padding: 28px 32px 40px;
    min-width: 0;
}

/* ===== mobile top bar (hidden on desktop) ===== */
.topbar[b-zrhe85itav] {
    display: none;
    align-items: center;
    gap: 12px;
    height: 56px;
    padding: 0 14px;
    background: linear-gradient(90deg, #1d6236, #15512a);
    color: #fff;
    flex: none;
    z-index: 50;
}

.hamburger[b-zrhe85itav] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
}

    .hamburger svg[b-zrhe85itav] {
        width: 22px;
        height: 22px;
    }

.topbar-title[b-zrhe85itav] {
    font-size: 18px;
    font-weight: 800;
}

/* ===== drawer overlay (mobile only) ===== */
.nav-overlay[b-zrhe85itav] {
    display: none;
}

/* ===== responsive ===== */
@media (max-width: 860px) {
    .admin-shell[b-zrhe85itav] {
        flex-direction: column;
    }

    .topbar[b-zrhe85itav] {
        display: flex;
    }

    .admin-main[b-zrhe85itav] {
        padding: 18px 16px 32px;
    }

    .nav-overlay[b-zrhe85itav] {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 55;
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s ease;
    }

        .nav-overlay.show[b-zrhe85itav] {
            opacity: 1;
            pointer-events: auto;
        }
}

#blazor-error-ui[b-zrhe85itav] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-zrhe85itav] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.side[b-pswi50f73q] {
    width: 248px;
    flex: none;
    height: 100vh;
    box-sizing: border-box;
    background: linear-gradient(180deg, #1d6236 0%, #14491f 100%);
    color: #cfe6d4;
    display: flex;
    flex-direction: column;
    padding: 22px 16px;
}

/* brand */
.side-brand[b-pswi50f73q] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 8px 22px;
}

.brand-logo[b-pswi50f73q] {
    width: 40px;
    height: 40px;
    flex: none;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.35));
}

.brand-name[b-pswi50f73q] {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.brand-sub[b-pswi50f73q] {
    font-size: 12px;
    color: #a9cdb2;
    margin-top: 4px;
}

/* nav */
.side-nav[b-pswi50f73q] {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 6px;
    flex: 1;
    overflow-y: auto;
}

.nav-item[b-pswi50f73q] {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 11px 14px;
    border-radius: 12px;
    color: #cfe6d4;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s ease, color .15s ease;
}

    .nav-item:hover[b-pswi50f73q] {
        background: rgba(255, 255, 255, 0.07);
        color: #fff;
    }

    .nav-item.active[b-pswi50f73q] {
        background: rgba(255, 255, 255, 0.15);
        color: #fff;
    }

    .nav-item svg[b-pswi50f73q] {
        width: 20px;
        height: 20px;
        flex: none;
        opacity: .9;
    }

/* 24h "new" count badge */
.nav-badge[b-pswi50f73q] {
    margin-left: auto;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border-radius: 11px;
    background: #f0c02e;
    color: #1d2a22;
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,.25);
}

/* attention dot */
.nav-dot[b-pswi50f73q] {
    margin-left: auto;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff4d4d;
    flex: none;
    box-shadow: 0 0 0 3px rgba(255,77,77,.22);
}

/* user card (clickable) */
.side-user-wrap[b-pswi50f73q] {
    position: relative;
    margin-top: 12px;
}

.side-user[b-pswi50f73q] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.20);
    border: none;
    width: 100%;
    cursor: pointer;
    text-align: left;
    color: inherit;
}

    .side-user:hover[b-pswi50f73q] {
        background: rgba(0, 0, 0, 0.30);
    }

/* avatar with colourful gradient ring */
.avatar[b-pswi50f73q] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8d9b7;
}

    .avatar .avatar-inner[b-pswi50f73q] {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #e8d9b7;
        color: #1d6236;
        font-weight: 800;
        font-size: 15px;
    }

.avatar.ring[b-pswi50f73q] {
    padding: 3px;
    background: conic-gradient(from 210deg, #5bbf78, #e8d96b, #e07b3c, #d34b4b, #9b5de5, #5bbf78);
}

    .avatar.ring .avatar-inner[b-pswi50f73q] {
        background: #0e4d2a;
        color: #eafff0;
    }

.avatar.sm[b-pswi50f73q] {
    width: 38px;
    height: 38px;
}

.side-user-text[b-pswi50f73q] {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.user-name[b-pswi50f73q] {
    font-weight: 700;
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-role[b-pswi50f73q] {
    color: #a9cdb2;
    font-size: 12px;
    margin-top: 2px;
}

.viewing-as[b-pswi50f73q] {
    color: #ffe6a3;
    font-weight: 600;
}

.user-chev[b-pswi50f73q] {
    width: 16px;
    height: 16px;
    flex: none;
    color: #a9cdb2;
}

/* popover */
.user-pop[b-pswi50f73q] {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.30);
    color: #28332c;
    z-index: 80;
}

.pop-head[b-pswi50f73q] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 6px 10px;
}

.pop-name[b-pswi50f73q] {
    font-weight: 800;
    font-size: 14px;
    color: #1d2a22;
}

.pop-real[b-pswi50f73q] {
    font-size: 12px;
    color: #8a948a;
    margin-top: 1px;
}

.pop-label[b-pswi50f73q] {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: #9aa49a;
    padding: 6px 8px 4px;
}

.pop-role[b-pswi50f73q],
.pop-item[b-pswi50f73q] {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    border: none;
    background: none;
    border-radius: 9px;
    padding: 9px 10px;
    font-size: 14px;
    color: #37463c;
    cursor: pointer;
    text-align: left;
}

    .pop-role:hover[b-pswi50f73q],
    .pop-item:hover[b-pswi50f73q] {
        background: #f1f4ef;
    }

.pop-role.active[b-pswi50f73q] {
    background: #eaf6ee;
    font-weight: 700;
    color: #1d6236;
}

.role-dot[b-pswi50f73q] {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex: none;
}

.role-check[b-pswi50f73q] {
    margin-left: auto;
    color: #1d6236;
    font-weight: 800;
}

.pop-sep[b-pswi50f73q] {
    height: 1px;
    background: #eee;
    margin: 8px 4px;
}

.pop-item svg[b-pswi50f73q] {
    width: 17px;
    height: 17px;
    flex: none;
}

.pop-item.danger[b-pswi50f73q] {
    color: #c0392b;
}

    .pop-item.danger:hover[b-pswi50f73q] {
        background: #fdecea;
    }

/* ===== mobile: sidebar becomes an off-canvas drawer ===== */
@media (max-width: 860px) {
    .side[b-pswi50f73q] {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 60;
        transform: translateX(-100%);
        transition: transform .25s ease;
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
    }

        .side.open[b-pswi50f73q] {
            transform: translateX(0);
        }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-nag6wya7sf],
.components-reconnect-repeated-attempt-visible[b-nag6wya7sf],
.components-reconnect-failed-visible[b-nag6wya7sf],
.components-pause-visible[b-nag6wya7sf],
.components-resume-failed-visible[b-nag6wya7sf],
.components-rejoining-animation[b-nag6wya7sf] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-nag6wya7sf],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-nag6wya7sf],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-nag6wya7sf],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-nag6wya7sf],
#components-reconnect-modal.components-reconnect-retrying[b-nag6wya7sf],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-nag6wya7sf],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-nag6wya7sf],
#components-reconnect-modal.components-reconnect-failed[b-nag6wya7sf],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-nag6wya7sf] {
    display: block;
}


#components-reconnect-modal[b-nag6wya7sf] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-nag6wya7sf 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-nag6wya7sf 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-nag6wya7sf 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-nag6wya7sf]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-nag6wya7sf 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-nag6wya7sf {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-nag6wya7sf {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-nag6wya7sf {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-nag6wya7sf] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-nag6wya7sf] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-nag6wya7sf] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-nag6wya7sf] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-nag6wya7sf] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-nag6wya7sf] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-nag6wya7sf] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-nag6wya7sf 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-nag6wya7sf] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-nag6wya7sf {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Dashboard.razor.rz.scp.css */
.dash[b-s1igonv21q] {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 1440px;
    margin: 0 auto;
    color: #2f3a33;
}

/* ===== header ===== */
.dash-head[b-s1igonv21q] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.dash-h1[b-s1igonv21q] {
    font-size: 34px;
    font-weight: 800;
    margin: 0;
    color: #1d2a22;
    letter-spacing: -.5px;
}

.dash-sub[b-s1igonv21q] {
    margin: 5px 0 0;
    color: #7d8a80;
    font-size: 14px;
}

.dash-viewing[b-s1igonv21q] {
    margin: 8px 0 0;
    font-size: 13px;
    color: #b07a16;
    background: #fff7e6;
    border: 1px solid #f1e2bd;
    border-radius: 8px;
    padding: 6px 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.back-link[b-s1igonv21q] {
    border: none;
    background: none;
    color: #1d6236;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

.dash-head-right[b-s1igonv21q] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.pills[b-s1igonv21q] {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.pill[b-s1igonv21q] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 1px solid #e7e1d4;
    border-radius: 999px;
    padding: 6px 13px;
    font-size: 12px;
    color: #4b574e;
    font-weight: 600;
}

.search[b-s1igonv21q] {
    width: 300px;
    max-width: 42vw;
    height: 40px;
    border: 1px solid #e7e1d4;
    border-radius: 11px;
    padding: 0 14px;
    background: #fff;
    font-size: 14px;
    outline: none;
}

.search:focus[b-s1igonv21q] {
    border-color: #b9cdbd;
}

/* ===== dots ===== */
.dot[b-s1igonv21q] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    flex: none;
}

.dot.g[b-s1igonv21q] { background: #3a9d57; }
.dot.b[b-s1igonv21q] { background: #3b7fd4; }
.dot.a[b-s1igonv21q] { background: #e0a92e; }
.dot.o[b-s1igonv21q] { background: #c8642f; }
.dot.r[b-s1igonv21q] { background: #d34b4b; }

/* ===== generic card ===== */
.card[b-s1igonv21q] {
    background: #fff;
    border: 1px solid #ece7db;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 6px 18px rgba(31, 42, 36, 0.04);
}

.card-h[b-s1igonv21q] {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    color: #1d2a22;
}

.card-sub[b-s1igonv21q] {
    color: #8a948a;
    font-size: 13px;
    margin: 5px 0 16px;
}

/* ===== stat row ===== */
.stats[b-s1igonv21q] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat-top[b-s1igonv21q] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-label[b-s1igonv21q] {
    color: #7d8a80;
    font-size: 13px;
    font-weight: 600;
}

.stat-value[b-s1igonv21q] {
    font-size: 34px;
    font-weight: 800;
    color: #1d2a22;
    margin-top: 6px;
    line-height: 1.1;
}

.stat-foot[b-s1igonv21q] {
    color: #9aa49a;
    font-size: 12px;
    margin-top: 6px;
}

/* ===== two-column rows ===== */
.row2[b-s1igonv21q] {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 16px;
    align-items: start;
}

/* when a role hides one side, the remaining card spans full width */
.row2.single[b-s1igonv21q] {
    grid-template-columns: 1fr;
}

/* ===== occupancy ===== */
.bars[b-s1igonv21q] {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bar-row[b-s1igonv21q] {
    display: grid;
    grid-template-columns: 120px 1fr 38px;
    align-items: center;
    gap: 12px;
}

.bar-label[b-s1igonv21q] {
    font-size: 13px;
    color: #4b574e;
}

.bar-track[b-s1igonv21q] {
    background: #eef0e9;
    border-radius: 8px;
    height: 14px;
    overflow: hidden;
}

.bar-fill[b-s1igonv21q] {
    background: linear-gradient(90deg, #3a9d57, #6cbf81);
    height: 100%;
    border-radius: 8px;
}

.bar-count[b-s1igonv21q] {
    font-size: 12px;
    color: #7d8a80;
    text-align: right;
}

.trend-cap[b-s1igonv21q] {
    margin: 18px 0 2px;
    font-size: 12px;
    color: #9aa49a;
}

.trend[b-s1igonv21q] {
    width: 100%;
    height: 48px;
}

/* ===== alerts ===== */
.alert-list[b-s1igonv21q] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.alert[b-s1igonv21q] {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #faf8f2;
    border: 1px solid #efeade;
    border-radius: 12px;
    padding: 12px 14px;
}

.alert .dot[b-s1igonv21q] {
    margin-top: 5px;
}

.alert-t[b-s1igonv21q] {
    font-weight: 700;
    color: #28332c;
    font-size: 14px;
}

.alert-d[b-s1igonv21q] {
    color: #8a948a;
    font-size: 12px;
    margin-top: 2px;
}

.btn-ghost[b-s1igonv21q] {
    margin-top: 12px;
    width: 100%;
    height: 42px;
    border: 1px solid #e6e1d5;
    background: #f3f1ea;
    border-radius: 10px;
    font-weight: 600;
    color: #4b574e;
    cursor: pointer;
}

.btn-ghost:hover[b-s1igonv21q] {
    background: #ece9df;
}

/* ===== reservations table ===== */
.resv-table[b-s1igonv21q] {
    width: 100%;
    border-collapse: collapse;
    margin-top: 6px;
}

.resv-table th[b-s1igonv21q] {
    text-align: left;
    font-size: 12px;
    color: #9aa49a;
    font-weight: 700;
    padding: 8px 6px;
    border-bottom: 1px solid #efeade;
}

.resv-table td[b-s1igonv21q] {
    padding: 13px 6px;
    font-size: 14px;
    color: #3a4a40;
    border-bottom: 1px solid #f3f1ea;
}

.resv-table tr:last-child td[b-s1igonv21q] {
    border-bottom: none;
}

.resv-table td.g[b-s1igonv21q] { font-weight: 700; color: #28332c; }
.resv-table td.ok[b-s1igonv21q] { color: #3a9d57; font-weight: 600; }
.resv-table td.warn[b-s1igonv21q] { color: #d39024; font-weight: 600; }
.resv-table td.muted[b-s1igonv21q] { color: #8a948a; }
.resv-table td.paid[b-s1igonv21q] { color: #3a9d57; font-weight: 600; }
.resv-table td.open[b-s1igonv21q] { color: #c8642f; font-weight: 600; }
.resv-table td.act[b-s1igonv21q] { color: #3b7fd4; font-weight: 600; cursor: pointer; }

/* ===== quick actions ===== */
.qa-list[b-s1igonv21q] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px;
}

.qa[b-s1igonv21q] {
    height: 44px;
    border-radius: 10px;
    border: 1px solid #e6e1d5;
    background: #f6f4ee;
    font-weight: 600;
    color: #37463c;
    cursor: pointer;
    text-align: left;
    padding: 0 15px;
    font-size: 14px;
}

.qa:hover[b-s1igonv21q] {
    background: #efece2;
}

.qa.primary[b-s1igonv21q] {
    background: linear-gradient(135deg, #1c5e34, #21743f);
    color: #fff;
    border: none;
}

.qa.primary:hover[b-s1igonv21q] {
    background: linear-gradient(135deg, #1a5630, #1e6a39);
}

/* ===== responsive ===== */
.table-wrap[b-s1igonv21q] {
    width: 100%;
}

@media (max-width: 1100px) {
    .row2[b-s1igonv21q] { grid-template-columns: 1fr; }
    .dash-head-right[b-s1igonv21q] { align-items: stretch; }
}

@media (max-width: 760px) {
    .dash-head[b-s1igonv21q] {
        flex-direction: column;
        align-items: stretch;
    }

    .dash-head-right[b-s1igonv21q] { align-items: stretch; }
    .pills[b-s1igonv21q] { justify-content: flex-start; }

    .search[b-s1igonv21q] {
        width: 100%;
        max-width: none;
    }

    .dash-h1[b-s1igonv21q] { font-size: 26px; }

    .stats[b-s1igonv21q] {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-value[b-s1igonv21q] { font-size: 28px; }

    /* let the reservations table scroll sideways instead of squashing */
    .table-wrap[b-s1igonv21q] { overflow-x: auto; }
    .resv-table[b-s1igonv21q] { min-width: 460px; }
}

@media (max-width: 420px) {
    .stats[b-s1igonv21q] { grid-template-columns: 1fr; }
}
/* /Components/Pages/Guests.razor.rz.scp.css */
.guests[b-67pm8zb9hb] { max-width: 1100px; margin: 0 auto; color: #2f3a33; }

.g-head[b-67pm8zb9hb] { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.g-h1[b-67pm8zb9hb] { font-size: 28px; font-weight: 800; margin: 0; color: #1d2a22; }
.g-sub[b-67pm8zb9hb] { color: #7d8a80; font-size: 14px; margin: 2px 0 0; }
.g-new[b-67pm8zb9hb] { height: 42px; padding: 0 18px; border: none; border-radius: 11px; background: linear-gradient(135deg, #1c5e34, #21743f); color: #fff; font-weight: 700; cursor: pointer; }
.card-note[b-67pm8zb9hb] { background: #fff; border: 1px solid #ece7db; border-radius: 14px; padding: 18px; color: #8a948a; }

/* total guests card */
.stats[b-67pm8zb9hb] { display: flex; gap: 12px; margin-bottom: 16px; }
.stat[b-67pm8zb9hb] { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid #ece7db; border-radius: 14px; padding: 12px 18px 12px 14px; box-shadow: 0 6px 18px rgba(31,42,36,.04); }
.stat-ico[b-67pm8zb9hb] { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex: none; background: #e8f1ff; }
.stat-ico svg[b-67pm8zb9hb] { width: 22px; height: 22px; color: #3b7fd4; }
.stat-n[b-67pm8zb9hb] { font-size: 24px; font-weight: 800; color: #1d2a22; line-height: 1; }
.stat-l[b-67pm8zb9hb] { font-size: 12px; color: #8a948a; margin-top: 4px; font-weight: 600; }

/* filter bar */
.filters[b-67pm8zb9hb] { margin-bottom: 14px; }
.filt-main[b-67pm8zb9hb] { display: flex; gap: 8px; }
.filt-q[b-67pm8zb9hb] { flex: 1; height: 46px; border: 1px solid #e0dccf; border-radius: 12px; padding: 0 14px; font-size: 15px; box-sizing: border-box; background: #fff; }
.filt-more[b-67pm8zb9hb] { height: 46px; width: 46px; flex: none; border: 1px solid #e0dccf; background: #fff; border-radius: 12px; cursor: pointer; font-size: 18px; color: #5b665d; }
.filt-more.on[b-67pm8zb9hb] { background: #eef6f0; border-color: #cfe3d6; color: #1d6236; }
.filt-go[b-67pm8zb9hb] { height: 46px; padding: 0 20px; flex: none; border: none; border-radius: 12px; background: linear-gradient(135deg, #1c5e34, #21743f); color: #fff; font-weight: 700; cursor: pointer; }
.filt-adv[b-67pm8zb9hb] { display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 8px; margin-top: 8px; }
.filt-adv input[b-67pm8zb9hb] { height: 42px; border: 1px solid #e0dccf; border-radius: 10px; padding: 0 12px; font-size: 14px; box-sizing: border-box; background: #fff; }
.filt-clear[b-67pm8zb9hb] { height: 42px; padding: 0 14px; border: 1px solid #e6e1d5; background: #f3f1ea; color: #4b574e; border-radius: 10px; font-weight: 600; cursor: pointer; }

/* per-guest counter chips */
.g-counts[b-67pm8zb9hb] { display: flex; gap: 6px; flex: none; }
.gc[b-67pm8zb9hb] { display: inline-flex; align-items: center; gap: 5px; padding: 5px 9px; border-radius: 9px; font-size: 13px; font-weight: 800; }
.gc svg[b-67pm8zb9hb] { width: 15px; height: 15px; }
.gc-req[b-67pm8zb9hb] { background: #fff5e3; color: #b5851f; }
.gc-res[b-67pm8zb9hb] { background: #e7f1ff; color: #2f6fc4; }
.gc-stay[b-67pm8zb9hb] { background: #ece7fb; color: #6b46c9; }
.gc-cxl[b-67pm8zb9hb] { background: #fdecea; color: #c0392b; }

.g-list[b-67pm8zb9hb] { display: flex; flex-direction: column; gap: 8px; }
.g-row[b-67pm8zb9hb] { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid #ece7db; border-radius: 12px; padding: 12px 14px; cursor: pointer; transition: background .12s; }
.g-row:hover[b-67pm8zb9hb] { background: #faf8f2; }
.g-flag[b-67pm8zb9hb] { font-size: 20px; flex: none; }
.g-info[b-67pm8zb9hb] { flex: 1; min-width: 0; }
.g-name[b-67pm8zb9hb] { font-weight: 700; color: #28332c; }
.g-meta[b-67pm8zb9hb] { color: #8a948a; font-size: 13px; margin-top: 2px; }
.g-meta span[b-67pm8zb9hb] { margin-right: 4px; }
.g-go[b-67pm8zb9hb] { color: #b7c0b7; font-size: 22px; font-weight: 700; }
.g-empty[b-67pm8zb9hb] { color: #9aa49a; padding: 24px; text-align: center; background: #fff; border: 1px dashed #e0dccf; border-radius: 12px; }

/* editor */
.modal-overlay[b-67pm8zb9hb] { position: fixed; inset: 0; background: rgba(0,0,0,.45); display: flex; align-items: flex-start; justify-content: center; padding: 28px 16px; overflow-y: auto; z-index: 200; }
.gmodal[b-67pm8zb9hb] { background: #fff; border-radius: 20px; width: 100%; max-width: 760px; box-shadow: 0 24px 70px rgba(0,0,0,.32); overflow: hidden; }

.gm-head[b-67pm8zb9hb] { display: flex; align-items: center; gap: 14px; padding: 18px 22px; background: linear-gradient(135deg, #1c5e34, #21743f); color: #fff; }
.gm-avatar[b-67pm8zb9hb] { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; font-size: 22px; flex: none; }
.gm-title[b-67pm8zb9hb] { flex: 1; min-width: 0; }
.gm-name[b-67pm8zb9hb] { font-size: 18px; font-weight: 800; }
.gm-status[b-67pm8zb9hb] { font-size: 12px; font-weight: 700; margin-top: 2px; opacity: .9; }
.gm-status.ok[b-67pm8zb9hb] { color: #c8f0d6; }
.gm-status.err[b-67pm8zb9hb] { color: #ffd3cd; }
.gm-status.saving[b-67pm8zb9hb] { color: #ffe8b8; }
.gm-close[b-67pm8zb9hb] { width: 34px; height: 34px; border: none; background: rgba(255,255,255,.16); color: #fff; border-radius: 10px; cursor: pointer; font-size: 14px; flex: none; }

.dup[b-67pm8zb9hb] { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; background: #fff7e6; border-bottom: 1px solid #f1e2bf; padding: 10px 22px; font-size: 14px; color: #8a6d1f; }
.dup-act[b-67pm8zb9hb] { display: flex; gap: 8px; }

.gm-tabs[b-67pm8zb9hb] { display: flex; gap: 4px; padding: 0 18px; border-bottom: 1px solid #ece7db; }
.gm-tab[b-67pm8zb9hb] { border: none; background: transparent; padding: 12px 16px; font-weight: 700; color: #8a948a; cursor: pointer; border-bottom: 3px solid transparent; }
.gm-tab:hover[b-67pm8zb9hb] { color: #37463c; }
.gm-tab.on[b-67pm8zb9hb] { color: #1d6236; border-bottom-color: #1d6236; }

.gm-body[b-67pm8zb9hb] { padding: 20px 22px; max-height: 62vh; overflow-y: auto; }

.f-grid[b-67pm8zb9hb] { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.f[b-67pm8zb9hb] { display: flex; flex-direction: column; gap: 6px; margin-top: 12px; }
.f-grid .f[b-67pm8zb9hb] { margin-top: 0; }
.f.span2[b-67pm8zb9hb] { grid-column: span 2; }
.f label[b-67pm8zb9hb] { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .3px; color: #9aa49a; }
.f input[b-67pm8zb9hb], .f select[b-67pm8zb9hb] { height: 42px; border: 1px solid #ddd; border-radius: 10px; padding: 0 12px; font-size: 14px; box-sizing: border-box; background: #fff; }
.f input:focus[b-67pm8zb9hb], .f select:focus[b-67pm8zb9hb] { outline: none; border-color: #21743f; box-shadow: 0 0 0 3px rgba(33,116,63,.12); }
.muted[b-67pm8zb9hb] { color: #b7c0b7; font-weight: 400; text-transform: none; }

.switch[b-67pm8zb9hb] { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 14px; color: #4b574e; font-weight: 600; }
.switch.top[b-67pm8zb9hb] { margin-top: 0; }

.sect[b-67pm8zb9hb] { margin-top: 18px; border-top: 1px solid #f1ede2; padding-top: 12px; }
.sect-head[b-67pm8zb9hb] { display: flex; align-items: center; justify-content: space-between; }
.sect-head h3[b-67pm8zb9hb] { margin: 0; font-size: 14px; font-weight: 800; color: #28332c; }
.add-mini[b-67pm8zb9hb] { border: 1px solid #cfe3d6; background: #eef6f0; color: #1d6236; border-radius: 8px; height: 30px; padding: 0 12px; font-weight: 700; cursor: pointer; }

.line[b-67pm8zb9hb] { display: flex; align-items: center; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.line select[b-67pm8zb9hb], .line input[b-67pm8zb9hb] { height: 38px; border: 1px solid #ddd; border-radius: 9px; padding: 0 10px; font-size: 13px; box-sizing: border-box; background: #fff; }
.l-type[b-67pm8zb9hb] { width: 130px; flex: none; }
.l-num[b-67pm8zb9hb] { flex: 1; min-width: 120px; }
.l-email[b-67pm8zb9hb] { flex: 1; min-width: 160px; }
.l-ind[b-67pm8zb9hb] { width: 64px; flex: none; }
.l-date[b-67pm8zb9hb] { width: 140px; flex: none; }
.l-pri[b-67pm8zb9hb] { display: flex; align-items: center; gap: 4px; font-size: 12px; color: #6b766c; flex: none; }
.l-del[b-67pm8zb9hb] { width: 34px; height: 38px; flex: none; border: 1px solid #f3c6c0; background: #fdecea; color: #c0392b; border-radius: 9px; cursor: pointer; }

/* preference pills */
.prefs[b-67pm8zb9hb] { display: flex; flex-wrap: wrap; gap: 10px; margin: 6px 0 4px; }
.pref[b-67pm8zb9hb] { display: inline-flex; align-items: center; gap: 8px; border: 1px solid #e0dccf; border-radius: 999px; padding: 8px 14px; font-size: 14px; font-weight: 600; color: #5b665d; cursor: pointer; user-select: none; background: #faf8f2; }
.pref input[b-67pm8zb9hb] { position: absolute; opacity: 0; width: 0; height: 0; }
.pref.on[b-67pm8zb9hb] { background: #e3f3ea; border-color: #8fd0a8; color: #1d6236; }

.note-item[b-67pm8zb9hb] { display: flex; align-items: center; gap: 8px; margin-top: 8px; font-size: 13px; }
.note-kind[b-67pm8zb9hb] { font-size: 11px; font-weight: 800; padding: 2px 8px; border-radius: 6px; text-transform: uppercase; }
.k-note[b-67pm8zb9hb] { background: #eef1ee; color: #5b665d; }
.k-vip[b-67pm8zb9hb] { background: #efe6fb; color: #7b3fd0; }
.k-caution[b-67pm8zb9hb] { background: #fdf1dc; color: #b07d18; }
.k-blacklist[b-67pm8zb9hb] { background: #fdecea; color: #c0392b; }
.note-reason[b-67pm8zb9hb] { flex: 1; color: #38423a; }
.note-when[b-67pm8zb9hb] { color: #9aa49a; font-size: 12px; }

.gm-foot[b-67pm8zb9hb] { display: flex; align-items: center; gap: 10px; padding: 14px 22px; border-top: 1px solid #ece7db; background: #faf8f2; }
.gm-foot .spacer[b-67pm8zb9hb] { flex: 1; }
.btn-del[b-67pm8zb9hb] { border: 1px solid #f3c6c0; background: #fdecea; color: #c0392b; border-radius: 10px; padding: 10px 16px; font-weight: 600; cursor: pointer; }
.btn-ghost[b-67pm8zb9hb] { border: 1px solid #e6e1d5; background: #f3f1ea; color: #4b574e; border-radius: 10px; padding: 10px 18px; font-weight: 600; cursor: pointer; }
.btn-save[b-67pm8zb9hb] { border: none; background: linear-gradient(135deg, #1c5e34, #21743f); color: #fff; border-radius: 10px; padding: 10px 22px; font-weight: 700; cursor: pointer; }
.btn-ghost.sm[b-67pm8zb9hb], .btn-save.sm[b-67pm8zb9hb] { padding: 7px 12px; font-size: 13px; }

@media (max-width: 860px) {
    .filt-adv[b-67pm8zb9hb] { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .g-h1[b-67pm8zb9hb] { font-size: 23px; }
    .f-grid[b-67pm8zb9hb] { grid-template-columns: 1fr; }
    .f.span2[b-67pm8zb9hb] { grid-column: span 1; }
    .gm-body[b-67pm8zb9hb] { max-height: 70vh; }
    .l-type[b-67pm8zb9hb], .l-num[b-67pm8zb9hb], .l-email[b-67pm8zb9hb], .l-date[b-67pm8zb9hb], .l-ind[b-67pm8zb9hb] { width: 100%; flex: 1 1 100%; min-width: 0; }
    .filt-adv[b-67pm8zb9hb] { grid-template-columns: 1fr 1fr; }
    /* counters drop to their own line under the name */
    .g-row[b-67pm8zb9hb] { flex-wrap: wrap; }
    .g-counts[b-67pm8zb9hb] { order: 3; width: 100%; justify-content: flex-start; padding-left: 32px; }
    .g-go[b-67pm8zb9hb] { display: none; }
}
/* /Components/Pages/Laundry.razor.rz.scp.css */
.lnd[b-l9tl8kl09j] { max-width: 1100px; margin: 0 auto; color: #2f3a33; }
.lnd-head[b-l9tl8kl09j] { margin-bottom: 14px; }
.lnd-h1[b-l9tl8kl09j] { font-size: 28px; font-weight: 800; margin: 0; color: #1d2a22; }
.lnd-sub[b-l9tl8kl09j] { color: #7d8a80; font-size: 14px; margin: 2px 0 0; }
.card-note[b-l9tl8kl09j] { background: #fff; border: 1px solid #ece7db; border-radius: 14px; padding: 18px; color: #8a948a; }

.tabs[b-l9tl8kl09j] { display: flex; gap: 6px; flex-wrap: wrap; border-bottom: 1px solid #e6e1d5; margin-bottom: 14px; }
.tab[b-l9tl8kl09j] { border: none; background: transparent; padding: 10px 14px; font-weight: 700; color: #7d8a80; cursor: pointer; border-bottom: 3px solid transparent; }
.tab:hover[b-l9tl8kl09j] { color: #37463c; }
.tab.on[b-l9tl8kl09j] { color: #1d6236; border-bottom-color: #1d6236; }

.lnd-msg[b-l9tl8kl09j] { padding: 10px 14px; border-radius: 10px; font-size: 14px; margin-bottom: 12px; }
.lnd-msg.ok[b-l9tl8kl09j] { background: #e9f6ee; color: #1d6236; }
.lnd-msg.err[b-l9tl8kl09j] { background: #fdecea; color: #c0392b; }

.panel[b-l9tl8kl09j] { background: #fff; border: 1px solid #ece7db; border-radius: 14px; padding: 16px 18px; margin-bottom: 14px; box-shadow: 0 6px 18px rgba(31,42,36,.04); }
.panel h3[b-l9tl8kl09j] { margin: 0 0 12px; font-size: 16px; font-weight: 800; color: #1d2a22; }
.hint[b-l9tl8kl09j] { color: #9aa49a; font-size: 13px; margin: 0 0 10px; }

.tbl[b-l9tl8kl09j] { width: 100%; border-collapse: collapse; font-size: 14px; }
.tbl th[b-l9tl8kl09j] { text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: .3px; color: #9aa49a; padding: 6px 10px; border-bottom: 1px solid #f1ede2; }
.tbl td[b-l9tl8kl09j] { padding: 8px 10px; border-bottom: 1px solid #f4f1e8; }
.tbl th.r[b-l9tl8kl09j], .tbl td.r[b-l9tl8kl09j] { text-align: right; }
.tbl tr.due td[b-l9tl8kl09j] { background: #fdf6ea; }
.muted[b-l9tl8kl09j] { color: #9aa49a; }
.tbl .sub[b-l9tl8kl09j] { display: block; font-size: 11px; color: #9aa49a; font-weight: 400; }

.badge[b-l9tl8kl09j] { font-size: 11px; font-weight: 800; border-radius: 6px; padding: 2px 8px; text-transform: uppercase; }
.badge.red[b-l9tl8kl09j] { background: #fdecea; color: #c0392b; }
.badge.green[b-l9tl8kl09j] { background: #e9f6ee; color: #1d6236; }
.badge.amber[b-l9tl8kl09j] { background: #fdf1dc; color: #b07d18; }
.badge.grey[b-l9tl8kl09j] { background: #eef1ee; color: #6b766c; }

.qty[b-l9tl8kl09j] { width: 70px; height: 34px; border: 1px solid #ddd; border-radius: 8px; padding: 0 8px; font-size: 14px; text-align: right; box-sizing: border-box; }
.sel[b-l9tl8kl09j] { height: 40px; border: 1px solid #ddd; border-radius: 10px; padding: 0 10px; font-size: 14px; min-width: 260px; background: #fff; }

.row[b-l9tl8kl09j] { display: flex; align-items: center; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.row.between[b-l9tl8kl09j] { justify-content: space-between; margin-top: 0; }

.btn-sm[b-l9tl8kl09j] { border: 1px solid #cfe3d6; background: #eef6f0; color: #1d6236; border-radius: 8px; height: 32px; padding: 0 12px; font-weight: 700; cursor: pointer; }
.btn-sm:hover[b-l9tl8kl09j] { background: #e3f0e8; }
.btn-save[b-l9tl8kl09j] { border: none; background: linear-gradient(135deg, #1c5e34, #21743f); color: #fff; border-radius: 10px; padding: 10px 18px; font-weight: 700; cursor: pointer; }
.btn-save:disabled[b-l9tl8kl09j] { opacity: .6; cursor: default; }

.f-grid[b-l9tl8kl09j] { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.f[b-l9tl8kl09j] { display: flex; flex-direction: column; gap: 6px; }
.f label[b-l9tl8kl09j] { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .3px; color: #9aa49a; }
.f input[b-l9tl8kl09j] { height: 40px; border: 1px solid #ddd; border-radius: 10px; padding: 0 12px; font-size: 14px; box-sizing: border-box; }

.draft[b-l9tl8kl09j] { border: 1px dashed #cfe3d6; border-radius: 12px; padding: 12px 14px; margin-top: 12px; background: #fafdfb; }
.draft-h[b-l9tl8kl09j] { font-weight: 800; color: #1d2a22; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }

@media (max-width: 720px) {
    .lnd-h1[b-l9tl8kl09j] { font-size: 23px; }
    .f-grid[b-l9tl8kl09j] { grid-template-columns: 1fr; }
    .sel[b-l9tl8kl09j] { min-width: 0; width: 100%; }

    /* tabs scroll sideways instead of wrapping into a tall stack */
    .tabs[b-l9tl8kl09j] { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .tab[b-l9tl8kl09j] { white-space: nowrap; padding: 10px 12px; }

    /* wide tables scroll horizontally inside their panel */
    .panel[b-l9tl8kl09j] { padding: 14px; overflow-x: auto; }
    .tbl[b-l9tl8kl09j] { min-width: 560px; }

    .row.between[b-l9tl8kl09j] { flex-direction: column; align-items: stretch; gap: 10px; }
    .btn-save[b-l9tl8kl09j] { width: 100%; }
}
/* /Components/Pages/Profile.razor.rz.scp.css */
.profile[b-tolw0zlu5l] { max-width: 820px; margin: 0 auto; color: #2f3a33; }

.profile-head[b-tolw0zlu5l] {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 16px; flex-wrap: wrap; margin-bottom: 18px;
}
.profile-h1[b-tolw0zlu5l] { font-size: 30px; font-weight: 800; margin: 0; color: #1d2a22; }
.profile-sub[b-tolw0zlu5l] { margin: 5px 0 0; color: #7d8a80; font-size: 14px; }

.edit-toggle[b-tolw0zlu5l] {
    height: 42px; padding: 0 20px; border-radius: 11px; cursor: pointer; font-weight: 700;
    border: 2px solid #21743f; background: #fff; color: #21743f;
}
.edit-toggle.on[b-tolw0zlu5l] { background: linear-gradient(135deg, #1c5e34, #21743f); color: #fff; border-color: transparent; }

.staff-picker[b-tolw0zlu5l] {
    display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
    background: #fff; border: 1px solid #ece7db; border-radius: 12px; padding: 12px 16px;
}
.staff-picker label[b-tolw0zlu5l] { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; color: #9aa49a; }
.staff-picker select[b-tolw0zlu5l] { flex: 1; height: 40px; border: 1px solid #ddd; border-radius: 10px; padding: 0 12px; font-size: 14px; }

.profile-card[b-tolw0zlu5l] {
    background: #fff; border: 1px solid #ece7db; border-radius: 16px; padding: 24px;
    box-shadow: 0 6px 18px rgba(31, 42, 36, 0.04);
}

.p-top[b-tolw0zlu5l] { display: flex; align-items: center; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid #f1ede2; }
.p-avatar[b-tolw0zlu5l] {
    width: 64px; height: 64px; border-radius: 50%; flex: none;
    display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 22px;
    border: 3px solid #fff; box-shadow: 0 0 0 2px rgba(0,0,0,.06);
}
.p-name[b-tolw0zlu5l] { font-size: 20px; font-weight: 800; color: #1d2a22; }
.p-alias[b-tolw0zlu5l] { color: #8a948a; font-size: 14px; margin-top: 2px; }

.sec[b-tolw0zlu5l] {
    font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px;
    color: #1d6236; margin: 22px 0 12px; padding-bottom: 6px; border-bottom: 1px solid #f1ede2;
}

.p-grid[b-tolw0zlu5l] { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f[b-tolw0zlu5l] { display: flex; flex-direction: column; gap: 6px; }
.f label[b-tolw0zlu5l] { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .3px; color: #9aa49a; display: flex; align-items: center; gap: 6px; }
.f select[b-tolw0zlu5l], .f input[b-tolw0zlu5l] { height: 42px; border: 1px solid #ddd; border-radius: 10px; padding: 0 12px; font-size: 14px; background: #fff; box-sizing: border-box; }
.f input:focus[b-tolw0zlu5l], .f select:focus[b-tolw0zlu5l] { outline: none; border-color: #21743f; box-shadow: 0 0 0 3px rgba(33,116,63,.12); }

.save-flash[b-tolw0zlu5l] { font-size: 13px; font-weight: 700; padding: 8px 14px; border-radius: 10px; align-self: center; }
.save-flash.ok[b-tolw0zlu5l] { background: #eaf6ee; color: #1d6236; }
.save-flash.err[b-tolw0zlu5l] { background: #fdecea; color: #c0392b; }

.help[b-tolw0zlu5l] {
    width: 16px; height: 16px; border-radius: 50%; background: #e7eef0; color: #5b8aa6;
    font-size: 11px; display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800; cursor: help; text-transform: none;
}

.ro[b-tolw0zlu5l] {
    min-height: 42px; display: flex; align-items: center; padding: 0 12px;
    border: 1px solid #eee; border-radius: 10px; background: #f4f3ee; color: #8a948a; font-size: 14px;
}

.color-row[b-tolw0zlu5l] { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.color-pick[b-tolw0zlu5l] { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #4b574e; font-weight: 600; text-transform: none; letter-spacing: 0; }
.color-pick input[type="color"][b-tolw0zlu5l] { width: 42px; height: 36px; padding: 2px; border: 1px solid #ddd; border-radius: 8px; background: #fff; cursor: pointer; }
.color-preview[b-tolw0zlu5l] {
    width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 13px; border: 1px solid rgba(0,0,0,.1); flex: none;
}

.chips[b-tolw0zlu5l] { display: flex; flex-wrap: wrap; gap: 8px; }
.chip[b-tolw0zlu5l] { background: #eaf6ee; color: #1d6236; border: 1px solid #cfe7d6; border-radius: 999px; padding: 6px 14px; font-size: 13px; font-weight: 600; }

/* live role manager */
.roles-hint[b-tolw0zlu5l] { font-size: 12px; color: #9aa49a; margin: 0 0 10px; }
.roles-edit[b-tolw0zlu5l] { display: flex; flex-wrap: wrap; gap: 8px; }
.role-chip[b-tolw0zlu5l] {
    display: inline-flex; align-items: center; gap: 6px;
    border-radius: 999px; padding: 6px 12px; font-size: 13px; font-weight: 700;
    border: 1px solid transparent; user-select: none;
}
.role-chip.clickable[b-tolw0zlu5l] { cursor: pointer; }
.role-chip .star[b-tolw0zlu5l] { font-size: 11px; }
.role-chip.preferred[b-tolw0zlu5l] { background: #1d6236; color: #fff; border-color: #14502a; }
.role-chip.assigned[b-tolw0zlu5l]  { background: #e3f3ea; color: #1d6236; border-color: #cfe7d6; }
.role-chip.assigned:hover[b-tolw0zlu5l] { background: #d6ecdf; }
.role-chip.unassigned[b-tolw0zlu5l] { background: #eef1ee; color: #8a948a; border-color: #e3e6e2; }
.role-chip.unassigned:hover[b-tolw0zlu5l] { background: #e6eae6; color: #5b665d; }
.role-x[b-tolw0zlu5l] {
    border: none; background: rgba(192,57,43,.14); color: #c0392b; cursor: pointer;
    width: 18px; height: 18px; border-radius: 50%; font-size: 11px; line-height: 1;
    display: inline-flex; align-items: center; justify-content: center; padding: 0;
}
.role-chip.preferred .role-x[b-tolw0zlu5l] { background: rgba(255,255,255,.22); color: #fff; }
.role-x:hover[b-tolw0zlu5l] { background: #c0392b; color: #fff; }

.p-btn[b-tolw0zlu5l] {
    height: 46px; border-radius: 10px; border: 1px solid #e6e1d5; background: #f6f4ee;
    font-weight: 600; color: #37463c; cursor: pointer; padding: 0 16px; font-size: 14px; width: 100%; text-align: left;
}
.p-btn:hover[b-tolw0zlu5l] { background: #efece2; }
.p-btn.primary[b-tolw0zlu5l] { background: linear-gradient(135deg, #1c5e34, #21743f); color: #fff; border: none; }

.p-pin[b-tolw0zlu5l] { display: flex; gap: 10px; margin-top: 12px; }
.p-pin-input[b-tolw0zlu5l] { flex: 1; height: 44px; border: 1px solid #ddd; border-radius: 10px; padding: 0 14px; font-size: 14px; box-sizing: border-box; }
.p-pin .p-btn[b-tolw0zlu5l] { width: auto; margin-top: 0; }

.p-secmsg[b-tolw0zlu5l] { margin-top: 12px; padding: 10px 12px; border-radius: 10px; font-size: 13px; }
.p-secmsg.ok[b-tolw0zlu5l] { background: #eaf6ee; color: #1d6236; }
.p-secmsg.err[b-tolw0zlu5l] { background: #fdecea; color: #c0392b; }

.p-note[b-tolw0zlu5l] { margin: 20px 0 0; color: #9aa49a; font-size: 13px; }

/* confirm dialog */
.confirm-overlay[b-tolw0zlu5l] { position: fixed; inset: 0; background: rgba(0,0,0,.5); display: flex; align-items: center; justify-content: center; z-index: 300; padding: 16px; }
.confirm[b-tolw0zlu5l] { background: #fff; border-radius: 16px; padding: 22px; width: 100%; max-width: 420px; box-shadow: 0 20px 60px rgba(0,0,0,.35); }
.confirm h3[b-tolw0zlu5l] { margin: 0 0 8px; font-size: 18px; color: #1d2a22; }
.confirm p[b-tolw0zlu5l] { margin: 0 0 16px; color: #5b665d; font-size: 14px; }
.confirm-actions[b-tolw0zlu5l] { display: flex; justify-content: flex-end; gap: 10px; }
.btn-ghost[b-tolw0zlu5l] { border: 1px solid #e6e1d5; background: #f3f1ea; color: #4b574e; border-radius: 10px; padding: 10px 18px; font-weight: 600; cursor: pointer; }
.btn-save[b-tolw0zlu5l] { border: none; background: linear-gradient(135deg, #1c5e34, #21743f); color: #fff; border-radius: 10px; padding: 10px 22px; font-weight: 700; cursor: pointer; }

@media (max-width: 600px) {
    .p-grid[b-tolw0zlu5l] { grid-template-columns: 1fr; }
}
/* /Components/Pages/Reception.razor.rz.scp.css */
.reception[b-4i65iwh9df] { max-width: 1200px; margin: 0 auto; color: #2f3a33; display: flex; flex-direction: column; gap: 16px; }

/* top bar */
.rcp-bar[b-4i65iwh9df] { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
.rcp-title h1[b-4i65iwh9df] { font-size: 28px; font-weight: 800; margin: 0; color: #1d2a22; }
.rcp-title span[b-4i65iwh9df] { color: #7d8a80; font-size: 14px; }
.rcp-actions[b-4i65iwh9df] { display: flex; gap: 10px; flex-wrap: wrap; }
.rcp-btn[b-4i65iwh9df] { height: 40px; padding: 0 16px; border-radius: 10px; border: 1px solid #e6e1d5; background: #f6f4ee; font-weight: 600; color: #37463c; cursor: pointer; }
.rcp-btn:hover[b-4i65iwh9df] { background: #efece2; }
.rcp-btn.primary[b-4i65iwh9df] { background: linear-gradient(135deg, #1c5e34, #21743f); color: #fff; border: none; }
.rcp-btn.small[b-4i65iwh9df] { height: 38px; padding: 0 14px; }

/* panels */
.rcp-panels[b-4i65iwh9df] { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rcp-panel[b-4i65iwh9df] { background: #fff; border: 1px solid #ece7db; border-radius: 16px; padding: 18px 20px; box-shadow: 0 6px 18px rgba(31,42,36,.04); }
.rcp-panel h3[b-4i65iwh9df] { margin: 0 0 14px; font-size: 16px; font-weight: 800; color: #1d2a22; }
.rcp-panel .muted[b-4i65iwh9df] { color: #9aa49a; font-size: 14px; }

.alert-list[b-4i65iwh9df], .msg-list[b-4i65iwh9df] { display: flex; flex-direction: column; gap: 8px; }
.alert-item[b-4i65iwh9df] { display: flex; align-items: center; gap: 12px; padding: 10px 12px; background: #faf8f2; border: 1px solid #efeade; border-radius: 12px; cursor: pointer; }
.alert-item:hover[b-4i65iwh9df] { background: #f3efe2; }
.dot[b-4i65iwh9df] { width: 10px; height: 10px; border-radius: 50%; flex: none; }
.dot.red[b-4i65iwh9df] { background: #d34b4b; }
.dot.amber[b-4i65iwh9df] { background: #e0a92e; }
.ai-info[b-4i65iwh9df] { flex: 1; min-width: 0; }
.ai-name[b-4i65iwh9df] { font-weight: 700; color: #28332c; font-size: 14px; }
.ai-room[b-4i65iwh9df] { color: #8a948a; font-weight: 600; font-size: 12px; margin-left: 6px; }
.ai-sub[b-4i65iwh9df] { color: #8a948a; font-size: 12px; margin-top: 2px; }
.ai-amt[b-4i65iwh9df] { font-weight: 800; color: #c0392b; }

.msg[b-4i65iwh9df] { display: flex; gap: 10px; align-items: flex-start; }
.msg-by[b-4i65iwh9df] { width: 32px; height: 32px; border-radius: 50%; flex: none; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 12px; }
.msg-text[b-4i65iwh9df] { font-size: 14px; color: #28332c; }
.msg-meta[b-4i65iwh9df] { color: #9aa49a; font-size: 12px; margin-top: 2px; }
.msg-add[b-4i65iwh9df] { display: flex; gap: 8px; margin-top: 12px; }
.msg-add input[b-4i65iwh9df] { flex: 1; height: 38px; border: 1px solid #ddd; border-radius: 10px; padding: 0 12px; font-size: 14px; }

/* calendar */
.cal-panel[b-4i65iwh9df] { overflow-x: auto; }
.cal-headbar[b-4i65iwh9df] { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.cal-headbar h3[b-4i65iwh9df] { margin: 0; }
.cal-nav[b-4i65iwh9df] { display: flex; align-items: center; gap: 8px; }
.cal-navbtn[b-4i65iwh9df] {
    width: 34px; height: 34px; border-radius: 9px; border: 1px solid #e6e1d5;
    background: #f6f4ee; color: #37463c; font-size: 20px; line-height: 1; font-weight: 700;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.cal-navbtn:hover[b-4i65iwh9df] { background: #efece2; }
.cal-todaybtn[b-4i65iwh9df] {
    height: 34px; padding: 0 14px; border-radius: 9px; border: 1px solid #cfe3d6;
    background: #eef6f0; color: #1d6236; font-weight: 700; cursor: pointer;
}
.cal-todaybtn:hover:not(:disabled)[b-4i65iwh9df] { background: #e3f0e8; }
.cal-todaybtn:disabled[b-4i65iwh9df] { opacity: .45; cursor: default; }
.cal-range[b-4i65iwh9df] { font-size: 13px; font-weight: 600; color: #7d8a80; margin-left: 4px; }
.cal-goto[b-4i65iwh9df] { display: flex; align-items: center; gap: 5px; font-size: 13px; color: #7d8a80; cursor: pointer; }
.cal-goto input[b-4i65iwh9df] { height: 34px; border: 1px solid #e6e1d5; border-radius: 9px; padding: 0 8px; font-size: 13px; background: #fff; color: #37463c; cursor: pointer; }
.cal-legend[b-4i65iwh9df] { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #7d8a80; margin-left: auto; }
.cal-legend .swatch[b-4i65iwh9df] { width: 16px; height: 12px; border-radius: 3px; background: #e3f3ea; border-top: 3px solid #2f9e5f; box-sizing: border-box; }

/* "next 15 days" highlight band */
.cal-day.inwindow[b-4i65iwh9df] { background: #eef8f1; box-shadow: inset 0 3px 0 #2f9e5f; }
.cal-day.inwindow .cd-num[b-4i65iwh9df] { color: #1d6236; }
.cal-cell.inwindow[b-4i65iwh9df] { background: #f3faf5; }
.cal-cell.today.inwindow[b-4i65iwh9df], .cal-day.today.inwindow[b-4i65iwh9df] { background: #e4f2ea; }
.cal[b-4i65iwh9df] { min-width: 760px; }
.cal-row[b-4i65iwh9df] { display: flex; align-items: stretch; }
.cal-rowlabel[b-4i65iwh9df] {
    width: 132px; flex: none; display: flex; align-items: center; gap: 8px;
    padding: 0 10px; border-bottom: 1px solid #f1ede2; font-size: 13px;
}
.rl-name[b-4i65iwh9df] { font-weight: 700; color: #28332c; }
.rl-cap[b-4i65iwh9df] { margin-left: auto; font-size: 11px; color: #9aa49a; background: #f1ede2; border-radius: 6px; padding: 1px 6px; }

.cal-track[b-4i65iwh9df] { position: relative; flex: 1; display: flex; min-height: 44px; }
.cal-cell[b-4i65iwh9df], .cal-day[b-4i65iwh9df] { flex: 1 1 0; border-right: 1px solid #f1ede2; border-bottom: 1px solid #f1ede2; }
.cal-cell.today[b-4i65iwh9df], .cal-day.today[b-4i65iwh9df] { background: #eef6f0; }
.cal-day.weekend[b-4i65iwh9df] { background: #faf8f2; }

.cal-head .cal-rowlabel[b-4i65iwh9df] { font-weight: 700; color: #9aa49a; text-transform: uppercase; font-size: 11px; }
.cal-head .cal-track[b-4i65iwh9df] { min-height: 38px; }
.cal-day[b-4i65iwh9df] { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 4px 0; }
.cd-dow[b-4i65iwh9df] { font-size: 10px; color: #9aa49a; text-transform: uppercase; }
.cd-num[b-4i65iwh9df] { font-size: 14px; font-weight: 700; color: #4b574e; }
.cal-day.today .cd-num[b-4i65iwh9df] { color: #1d6236; }
.cal-day.today .cd-dow[b-4i65iwh9df] { color: #1d6236; font-weight: 700; }

.cal-prop[b-4i65iwh9df] {
    font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px;
    color: #1d6236; padding: 10px 10px 4px; cursor: pointer; user-select: none;
    display: flex; align-items: center; gap: 6px;
}
.cal-prop:hover[b-4i65iwh9df] { color: #14502a; }
.cal-group[b-4i65iwh9df] {
    font-size: 12px; font-weight: 700; color: #5b665d;
    padding: 6px 10px 4px 14px; background: #faf8f2; border-bottom: 1px solid #f1ede2;
    cursor: pointer; user-select: none; display: flex; align-items: center; gap: 6px;
}
.cal-group:hover[b-4i65iwh9df] { background: #f3efe2; }
.cal-caret[b-4i65iwh9df] { font-size: 10px; color: #9aa49a; width: 10px; flex: none; }
.cal-prop .cal-caret[b-4i65iwh9df] { color: #4f9a6b; }
.cal-pcount[b-4i65iwh9df], .cal-gcount[b-4i65iwh9df] { margin-left: auto; font-size: 10px; font-weight: 700; color: #9aa49a; background: #fff; border: 1px solid #ece7db; border-radius: 10px; padding: 0 7px; }
.cal-prop.collapsed[b-4i65iwh9df], .cal-group.collapsed[b-4i65iwh9df] { opacity: .8; }
.cal-row.bed .cal-rowlabel[b-4i65iwh9df] { padding-left: 22px; }
.cal-row.bed .rl-name[b-4i65iwh9df] { font-weight: 600; color: #4b574e; }

/* reservation bars (absolute, with half-day offset baked into left/width) */
.res-bar[b-4i65iwh9df] {
    position: absolute; top: 7px; bottom: 7px; border-radius: 7px;
    display: flex; align-items: center; gap: 4px; padding: 0 8px;
    font-size: 12px; font-weight: 700; cursor: pointer; overflow: hidden; white-space: nowrap;
    border-left: 4px solid rgba(0,0,0,.25); box-shadow: 0 1px 3px rgba(0,0,0,.18);
}
.res-bar.arrived[b-4i65iwh9df] { border-left-color: #2ecc71; }
.res-bar.expected[b-4i65iwh9df] { border-left-color: #e0a92e; }
.res-bar.out[b-4i65iwh9df] { border-left-color: #95a5a6; opacity: .75; }
.res-bar.cancelled[b-4i65iwh9df] { border-left-color: #d34b4b; opacity: .5; text-decoration: line-through; }
.res-bar.noshow[b-4i65iwh9df] { border-left-color: #c0392b; opacity: .6; }
.rb-name[b-4i65iwh9df] { overflow: hidden; text-overflow: ellipsis; }
.rb-eur[b-4i65iwh9df] { background: #c0392b; color: #fff; border-radius: 5px; padding: 0 4px; font-size: 10px; margin-left: auto; flex: none; }

/* modal */
.modal-overlay[b-4i65iwh9df] { position: fixed; inset: 0; background: rgba(0,0,0,.45); display: flex; align-items: flex-start; justify-content: center; padding: 40px 16px; overflow-y: auto; z-index: 200; }
.modal[b-4i65iwh9df] { background: #fff; border-radius: 18px; padding: 24px; width: 100%; max-width: 640px; box-shadow: 0 20px 60px rgba(0,0,0,.30); }
.modal-h[b-4i65iwh9df] { margin: 0 0 18px; font-size: 20px; font-weight: 800; color: #1d2a22; }
.f-grid[b-4i65iwh9df] { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f[b-4i65iwh9df] { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; }
.f-grid .f[b-4i65iwh9df] { margin-top: 0; }
.f label[b-4i65iwh9df] { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .3px; color: #9aa49a; }
.f input[b-4i65iwh9df], .f select[b-4i65iwh9df] { height: 42px; border: 1px solid #ddd; border-radius: 10px; padding: 0 12px; font-size: 14px; box-sizing: border-box; background: #fff; }
.modal-msg.err[b-4i65iwh9df] { margin-top: 14px; padding: 10px 12px; border-radius: 10px; font-size: 13px; background: #fdecea; color: #c0392b; }
.modal-actions[b-4i65iwh9df] { display: flex; align-items: center; gap: 10px; margin-top: 22px; }
.modal-actions .spacer[b-4i65iwh9df] { flex: 1; }
.btn-del[b-4i65iwh9df] { border: 1px solid #f3c6c0; background: #fdecea; color: #c0392b; border-radius: 10px; padding: 10px 16px; font-weight: 600; cursor: pointer; }
.btn-ghost[b-4i65iwh9df] { border: 1px solid #e6e1d5; background: #f3f1ea; color: #4b574e; border-radius: 10px; padding: 10px 18px; font-weight: 600; cursor: pointer; }
.btn-save[b-4i65iwh9df] { border: none; background: linear-gradient(135deg, #1c5e34, #21743f); color: #fff; border-radius: 10px; padding: 10px 22px; font-weight: 700; cursor: pointer; }

/* occupants panel */
.occ[b-4i65iwh9df] { margin-top: 18px; border-top: 1px solid #f1ede2; padding-top: 12px; }
.occ-head[b-4i65iwh9df] { display: flex; align-items: center; gap: 8px; }
.occ-head h3[b-4i65iwh9df] { margin: 0; font-size: 14px; font-weight: 800; color: #28332c; }
.occ-count[b-4i65iwh9df] { background: #eef6f0; color: #1d6236; font-weight: 800; font-size: 12px; border-radius: 20px; padding: 1px 9px; }
.occ-empty[b-4i65iwh9df] { color: #aab3a9; font-size: 13px; padding: 8px 0; }
.occ-row[b-4i65iwh9df] { display: flex; align-items: center; gap: 10px; padding: 8px 4px; border-bottom: 1px solid #f4f1e8; font-size: 13px; }
.occ-name[b-4i65iwh9df] { font-weight: 700; color: #28332c; flex: 1; min-width: 0; }
.occ-nat[b-4i65iwh9df] { color: #6b766c; }
.occ-doc[b-4i65iwh9df] { color: #9aa49a; font-variant-numeric: tabular-nums; }
.occ-siba[b-4i65iwh9df] { font-size: 11px; font-weight: 800; border-radius: 6px; padding: 2px 8px; text-transform: uppercase; }
.occ-siba.s-pending[b-4i65iwh9df] { background: #fdf1dc; color: #b07d18; }
.occ-siba.s-sent[b-4i65iwh9df] { background: #e9f6ee; color: #1d6236; }
.occ-siba.s-not_required[b-4i65iwh9df] { background: #eef1ee; color: #7d8a80; }
.occ-del[b-4i65iwh9df] { width: 30px; height: 30px; flex: none; border: 1px solid #f3c6c0; background: #fdecea; color: #c0392b; border-radius: 8px; cursor: pointer; }

.occ-add[b-4i65iwh9df] { position: relative; margin-top: 10px; }
.occ-add input[b-4i65iwh9df] { width: 100%; height: 40px; border: 1px solid #ddd; border-radius: 10px; padding: 0 12px; font-size: 14px; box-sizing: border-box; }
.occ-results[b-4i65iwh9df] { margin-top: 6px; border: 1px solid #ece7db; border-radius: 10px; overflow: hidden; }
.occ-result[b-4i65iwh9df] { display: flex; justify-content: space-between; align-items: center; width: 100%; border: none; border-bottom: 1px solid #f4f1e8; background: #fff; padding: 9px 12px; cursor: pointer; text-align: left; font-size: 14px; }
.occ-result:hover[b-4i65iwh9df] { background: #faf8f2; }
.occ-result small[b-4i65iwh9df] { color: #9aa49a; }
.occ-hint[b-4i65iwh9df] { margin-top: 6px; font-size: 12px; color: #9aa49a; }
.occ-hint a[b-4i65iwh9df] { color: #1d6236; font-weight: 700; }

@media (max-width: 760px) {
    .rcp-panels[b-4i65iwh9df] { grid-template-columns: 1fr; }
    .f-grid[b-4i65iwh9df] { grid-template-columns: 1fr; }
    .rcp-title h1[b-4i65iwh9df] { font-size: 22px; }
    .rcp-actions[b-4i65iwh9df] { width: 100%; }
    .rcp-actions .rcp-btn[b-4i65iwh9df] { flex: 1; }
    .modal-overlay[b-4i65iwh9df] { padding: 18px 8px; }
    .modal[b-4i65iwh9df] { padding: 18px 16px; }
    .occ-row[b-4i65iwh9df] { flex-wrap: wrap; row-gap: 2px; }
    .occ-name[b-4i65iwh9df] { flex: 1 1 100%; }
    .cal-headbar[b-4i65iwh9df] { align-items: flex-start; }
    .cal-legend[b-4i65iwh9df] { margin-left: 0; }
}
@media (max-width: 480px) {
    /* keep the calendar grid usable: a touch narrower, still horizontally scrollable */
    .cal[b-4i65iwh9df] { min-width: 680px; }
    .cal-rowlabel[b-4i65iwh9df] { width: 104px; }
}
/* /Components/Pages/Rooms.razor.rz.scp.css */
.rooms[b-5tkw9a9bj2] { max-width: 1100px; margin: 0 auto; color: #2f3a33; }

.rooms-head[b-5tkw9a9bj2] {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 16px; flex-wrap: wrap; margin-bottom: 18px;
}
.rooms-h1[b-5tkw9a9bj2] { font-size: 30px; font-weight: 800; margin: 0; color: #1d2a22; }
.rooms-sub[b-5tkw9a9bj2] { margin: 5px 0 0; color: #7d8a80; font-size: 14px; }
.rooms-new[b-5tkw9a9bj2] {
    height: 42px; padding: 0 18px; border: none; border-radius: 11px;
    background: linear-gradient(135deg, #1c5e34, #21743f); color: #fff; font-weight: 700; cursor: pointer;
}
.card-note[b-5tkw9a9bj2] { background: #fff; border: 1px solid #ece7db; border-radius: 16px; padding: 24px; color: #7d8a80; }

.prop-block[b-5tkw9a9bj2] { margin-bottom: 26px; }
.prop-title[b-5tkw9a9bj2] {
    font-size: 16px; font-weight: 800; color: #1d2a22; margin: 0 0 12px;
    display: flex; align-items: baseline; gap: 10px;
}
.prop-title span[b-5tkw9a9bj2] { font-size: 12px; font-weight: 600; color: #9aa49a; }

.room-grid[b-5tkw9a9bj2] {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px;
}

.room-card[b-5tkw9a9bj2] {
    background: #fff; border: 1px solid #ece7db; border-radius: 14px; padding: 16px;
    box-shadow: 0 4px 12px rgba(31,42,36,.03); display: flex; flex-direction: column; gap: 8px;
}
.room-card.inactive[b-5tkw9a9bj2] { opacity: .6; }
.room-top[b-5tkw9a9bj2] { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.room-name[b-5tkw9a9bj2] { font-weight: 800; color: #28332c; font-size: 16px; }
.rtype[b-5tkw9a9bj2] { font-size: 11px; color: #8a948a; text-transform: uppercase; letter-spacing: .4px; font-weight: 700; }
.room-meta[b-5tkw9a9bj2] { color: #7d8a80; font-size: 13px; display: flex; gap: 8px; align-items: center; }
.room-meta .key[b-5tkw9a9bj2] { color: #b07a16; }

.room-bottom[b-5tkw9a9bj2] { display: flex; justify-content: space-between; align-items: center; margin-top: 2px; }
.status[b-5tkw9a9bj2] { font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 999px; }
.status.clean[b-5tkw9a9bj2] { background: #eaf6ee; color: #1d6236; }
.status.dirty[b-5tkw9a9bj2] { background: #fff3e0; color: #b07a16; }
.status.blocked[b-5tkw9a9bj2] { background: #fdecea; color: #c0392b; }
.status.oos[b-5tkw9a9bj2] { background: #f0f0f0; color: #777; }

.mini[b-5tkw9a9bj2] {
    border: 1px solid #e6e1d5; background: #f6f4ee; border-radius: 8px;
    padding: 6px 12px; font-weight: 600; color: #37463c; cursor: pointer; font-size: 13px;
}
.mini:hover[b-5tkw9a9bj2] { background: #efece2; }

.status-row[b-5tkw9a9bj2] { display: flex; gap: 6px; margin-top: 4px; }
.st[b-5tkw9a9bj2] {
    flex: 1; border: 1px solid #e6e1d5; background: #faf8f2; border-radius: 8px;
    padding: 6px 0; font-size: 12px; font-weight: 600; color: #6b7280; cursor: pointer;
}
.st:hover[b-5tkw9a9bj2] { background: #f1ede2; }
.st.on.clean[b-5tkw9a9bj2] { background: #1d6236; color: #fff; border-color: #1d6236; }
.st.on.dirty[b-5tkw9a9bj2] { background: #d39024; color: #fff; border-color: #d39024; }
.st.on.blocked[b-5tkw9a9bj2] { background: #c0392b; color: #fff; border-color: #c0392b; }

.room-empty[b-5tkw9a9bj2] { color: #9aa49a; font-size: 14px; padding: 8px; }

/* ===== modal (shared look) ===== */
.modal-overlay[b-5tkw9a9bj2] {
    position: fixed; inset: 0; background: rgba(0,0,0,.45);
    display: flex; align-items: flex-start; justify-content: center;
    padding: 40px 16px; overflow-y: auto; z-index: 200;
}
.modal[b-5tkw9a9bj2] {
    background: #fff; border-radius: 18px; padding: 24px; width: 100%; max-width: 620px;
    box-shadow: 0 20px 60px rgba(0,0,0,.30);
}
.modal-h[b-5tkw9a9bj2] { margin: 0 0 18px; font-size: 20px; font-weight: 800; color: #1d2a22; }
.f-grid[b-5tkw9a9bj2] { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f[b-5tkw9a9bj2] { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; }
.f-grid .f[b-5tkw9a9bj2] { margin-top: 0; }
.f label[b-5tkw9a9bj2] { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .3px; color: #9aa49a; }
.f input[b-5tkw9a9bj2], .f select[b-5tkw9a9bj2] {
    height: 42px; border: 1px solid #ddd; border-radius: 10px; padding: 0 12px;
    font-size: 14px; box-sizing: border-box; background: #fff;
}
.switch[b-5tkw9a9bj2] { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: #37463c; cursor: pointer; margin-top: 16px; }
.modal-msg[b-5tkw9a9bj2] { margin-top: 14px; padding: 10px 12px; border-radius: 10px; font-size: 13px; }
.modal-msg.ok[b-5tkw9a9bj2] { background: #eaf6ee; color: #1d6236; }
.modal-msg.err[b-5tkw9a9bj2] { background: #fdecea; color: #c0392b; }
.modal-actions[b-5tkw9a9bj2] { display: flex; align-items: center; gap: 10px; margin-top: 22px; }
.modal-actions .spacer[b-5tkw9a9bj2] { flex: 1; }
.btn-del[b-5tkw9a9bj2] { border: 1px solid #f3c6c0; background: #fdecea; color: #c0392b; border-radius: 10px; padding: 10px 16px; font-weight: 600; cursor: pointer; }
.btn-ghost[b-5tkw9a9bj2] { border: 1px solid #e6e1d5; background: #f3f1ea; color: #4b574e; border-radius: 10px; padding: 10px 18px; font-weight: 600; cursor: pointer; }
.btn-save[b-5tkw9a9bj2] { border: none; background: linear-gradient(135deg, #1c5e34, #21743f); color: #fff; border-radius: 10px; padding: 10px 22px; font-weight: 700; cursor: pointer; }

.confirm-overlay[b-5tkw9a9bj2] { position: fixed; inset: 0; background: rgba(0,0,0,.5); display: flex; align-items: center; justify-content: center; z-index: 300; padding: 16px; }
.confirm[b-5tkw9a9bj2] { background: #fff; border-radius: 16px; padding: 22px; width: 100%; max-width: 420px; box-shadow: 0 20px 60px rgba(0,0,0,.35); }
.confirm h3[b-5tkw9a9bj2] { margin: 0 0 8px; font-size: 18px; color: #1d2a22; }
.confirm p[b-5tkw9a9bj2] { margin: 0 0 14px; color: #5b665d; font-size: 14px; }
.confirm-actions[b-5tkw9a9bj2] { display: flex; justify-content: flex-end; gap: 10px; }

@media (max-width: 600px) {
    .f-grid[b-5tkw9a9bj2] { grid-template-columns: 1fr; }
    .modal-overlay[b-5tkw9a9bj2] { padding: 16px 10px; }
}
/* /Components/Pages/StaffPage.razor.rz.scp.css */
.staff[b-dx4x5x07an] {
    max-width: 1000px;
    margin: 0 auto;
    color: #2f3a33;
}

.staff-head[b-dx4x5x07an] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.staff-h1[b-dx4x5x07an] {
    font-size: 30px;
    font-weight: 800;
    margin: 0;
    color: #1d2a22;
}

.staff-sub[b-dx4x5x07an] {
    margin: 5px 0 0;
    color: #7d8a80;
    font-size: 14px;
}

.staff-new[b-dx4x5x07an] {
    height: 42px;
    padding: 0 18px;
    border: none;
    border-radius: 11px;
    background: linear-gradient(135deg, #1c5e34, #21743f);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.card-note[b-dx4x5x07an] {
    background: #fff;
    border: 1px solid #ece7db;
    border-radius: 16px;
    padding: 24px;
    color: #7d8a80;
}

/* list */
.staff-list[b-dx4x5x07an] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.staff-card[b-dx4x5x07an] {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid #ece7db;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 4px 12px rgba(31, 42, 36, 0.03);
}

.s-avatar[b-dx4x5x07an] {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    flex: none;
    background: #0e4d2a;
    color: #eafff0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

.s-info[b-dx4x5x07an] { flex: 1; min-width: 0; }
.s-name[b-dx4x5x07an] { font-weight: 700; color: #28332c; }
.s-meta[b-dx4x5x07an] { color: #8a948a; font-size: 13px; margin-top: 2px; }

.s-badge[b-dx4x5x07an] {
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
}
.s-badge.on[b-dx4x5x07an] { background: #eaf6ee; color: #1d6236; }
.s-badge.off[b-dx4x5x07an] { background: #f3f1ea; color: #9aa49a; }

.s-edit[b-dx4x5x07an] {
    border: 1px solid #e6e1d5;
    background: #f6f4ee;
    border-radius: 9px;
    padding: 8px 16px;
    font-weight: 600;
    color: #37463c;
    cursor: pointer;
}
.s-edit:hover[b-dx4x5x07an] { background: #efece2; }

/* modal */
.modal-overlay[b-dx4x5x07an] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 16px;
    overflow-y: auto;
    z-index: 200;
}

.modal[b-dx4x5x07an] {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    width: 100%;
    max-width: 620px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.30);
}

.modal-h[b-dx4x5x07an] {
    margin: 0 0 18px;
    font-size: 20px;
    font-weight: 800;
    color: #1d2a22;
}

.f-grid[b-dx4x5x07an] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.f[b-dx4x5x07an] { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; }
.f:first-child[b-dx4x5x07an], .f-grid .f[b-dx4x5x07an] { margin-top: 0; }

.f label[b-dx4x5x07an] {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
    color: #9aa49a;
}

.f input[b-dx4x5x07an],
.f select[b-dx4x5x07an] {
    height: 42px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 0 12px;
    font-size: 14px;
    box-sizing: border-box;
    background: #fff;
}

.role-checks[b-dx4x5x07an] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rc[b-dx4x5x07an] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #f6f4ee;
    border: 1px solid #e6e1d5;
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13px;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
    color: #37463c;
    font-weight: 600;
}

.f-row[b-dx4x5x07an] {
    display: flex;
    gap: 24px;
    margin-top: 16px;
}

.switch[b-dx4x5x07an] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #37463c;
    cursor: pointer;
}

.modal-msg[b-dx4x5x07an] {
    margin-top: 14px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 13px;
}
.modal-msg.ok[b-dx4x5x07an] { background: #eaf6ee; color: #1d6236; }
.modal-msg.err[b-dx4x5x07an] { background: #fdecea; color: #c0392b; }

.modal-actions[b-dx4x5x07an] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}
.modal-actions .spacer[b-dx4x5x07an] { flex: 1; }

.btn-del[b-dx4x5x07an] {
    border: 1px solid #f3c6c0;
    background: #fdecea;
    color: #c0392b;
    border-radius: 10px;
    padding: 10px 16px;
    font-weight: 600;
    cursor: pointer;
}

.btn-ghost[b-dx4x5x07an] {
    border: 1px solid #e6e1d5;
    background: #f3f1ea;
    color: #4b574e;
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 600;
    cursor: pointer;
}

.btn-save[b-dx4x5x07an] {
    border: none;
    background: linear-gradient(135deg, #1c5e34, #21743f);
    color: #fff;
    border-radius: 10px;
    padding: 10px 22px;
    font-weight: 700;
    cursor: pointer;
}

.color-row[b-dx4x5x07an] {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.color-row .color-pick[b-dx4x5x07an] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #4b574e;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}

    .color-row .color-pick input[type="color"][b-dx4x5x07an] {
        width: 42px;
        height: 36px;
        padding: 2px;
        border: 1px solid #ddd;
        border-radius: 8px;
        background: #fff;
        cursor: pointer;
    }

.color-preview[b-dx4x5x07an] {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    flex: none;
}

/* clickable list card + open hint */
.staff-card[b-dx4x5x07an] { cursor: pointer; transition: border-color .15s, box-shadow .15s; }
.staff-card:hover[b-dx4x5x07an] { border-color: #cfe0d3; box-shadow: 0 6px 16px rgba(31,42,36,.07); }
.s-open[b-dx4x5x07an] { color: #9aa49a; font-size: 13px; font-weight: 600; }

/* wide detail modal */
.modal.wide[b-dx4x5x07an] { max-width: 760px; padding: 0; overflow: hidden; }

.detail-head[b-dx4x5x07an] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    border-bottom: 1px solid #efeade;
    background: #faf8f2;
}

.d-avatar[b-dx4x5x07an] {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 17px;
}

.d-head-info[b-dx4x5x07an] { flex: 1; min-width: 0; }
.d-name[b-dx4x5x07an] { font-size: 19px; font-weight: 800; color: #1d2a22; }
.d-sub[b-dx4x5x07an] { color: #8a948a; font-size: 13px; margin-top: 2px; }
.d-head-actions[b-dx4x5x07an] { display: flex; align-items: center; gap: 10px; }

.detail-body[b-dx4x5x07an] {
    padding: 22px 24px;
    max-height: 64vh;
    overflow-y: auto;
}

.sec[b-dx4x5x07an] {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: #1d6236;
    margin: 22px 0 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid #f1ede2;
}
.sec:first-child[b-dx4x5x07an] { margin-top: 0; }
.sec small[b-dx4x5x07an] { color: #9aa49a; font-weight: 600; text-transform: none; letter-spacing: 0; }

/* read-only value styling (disabled look) */
.ro[b-dx4x5x07an] {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #f4f3ee;
    color: #8a948a;
    font-size: 14px;
}

.ro-switch input[b-dx4x5x07an] { accent-color: #9aa49a; }

.chips[b-dx4x5x07an] { display: flex; flex-wrap: wrap; gap: 8px; }
.chip[b-dx4x5x07an] {
    background: #eaf6ee;
    color: #1d6236;
    border: 1px solid #cfe7d6;
    border-radius: 999px;
    padding: 5px 13px;
    font-size: 13px;
    font-weight: 600;
}

.modal.wide .modal-actions[b-dx4x5x07an] {
    margin: 0;
    padding: 16px 24px;
    border-top: 1px solid #efeade;
    background: #faf8f2;
}

/* confirmation dialog (on top of detail) */
.confirm-overlay[b-dx4x5x07an] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 300;
    padding: 16px;
}
.confirm[b-dx4x5x07an] {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.confirm h3[b-dx4x5x07an] { margin: 0 0 8px; font-size: 18px; color: #1d2a22; }
.confirm p[b-dx4x5x07an] { margin: 0 0 14px; color: #5b665d; font-size: 14px; }
.confirm-reason[b-dx4x5x07an] {
    width: 100%;
    min-height: 64px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
    box-sizing: border-box;
    margin-bottom: 14px;
    font-family: inherit;
}
.confirm-actions[b-dx4x5x07an] { display: flex; justify-content: flex-end; gap: 10px; }

@media (max-width: 600px) {
    .f-grid[b-dx4x5x07an] { grid-template-columns: 1fr; }
    .modal-overlay[b-dx4x5x07an] { padding: 16px 10px; }
    .modal.wide[b-dx4x5x07an] { max-width: 100%; }
}
/* /Components/Pages/WrongTrail.razor.rz.scp.css */
.notfound-page[b-oz1x7bnv1v] {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background: linear-gradient( 135deg, #1e5c38, #2d7d4d, #409868);
}

.notfound-card[b-oz1x7bnv1v] {
    width: 100%;
    max-width: 700px;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

.trail-icon[b-oz1x7bnv1v] {
    font-size: 90px;
    margin-bottom: 20px;
}

.notfound-card h1[b-oz1x7bnv1v] {
    font-size: 56px;
    margin-bottom: 10px;
    color: #18442a;
    font-weight: 800;
}

.subtitle[b-oz1x7bnv1v] {
    font-size: 24px;
    font-weight: 600;
    color: #2f7a4f;
    margin-bottom: 25px;
}

.description[b-oz1x7bnv1v] {
    font-size: 18px;
    line-height: 1.7;
    color: #5c685f;
    margin-bottom: 10px;
}

.buttons[b-oz1x7bnv1v] {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.primary-button[b-oz1x7bnv1v] {
    background: #1e6b34;
    color: white;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 18px;
    font-weight: 700;
    transition: .2s;
}

    .primary-button:hover[b-oz1x7bnv1v] {
        transform: translateY(-2px);
        background: #165328;
    }

.secondary-button[b-oz1x7bnv1v] {
    background: white;
    color: #1e6b34;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 18px;
    border: 2px solid #1e6b34;
    font-weight: 700;
    transition: .2s;
}

    .secondary-button:hover[b-oz1x7bnv1v] {
        transform: translateY(-2px);
    }

.footer[b-oz1x7bnv1v] {
    margin-top: 40px;
    color: #94a197;
    font-size: 14px;
}

@media(max-width:900px) {

    .notfound-card[b-oz1x7bnv1v] {
        padding: 40px 25px;
    }

        .notfound-card h1[b-oz1x7bnv1v] {
            font-size: 40px;
        }

    .subtitle[b-oz1x7bnv1v] {
        font-size: 20px;
    }

    .description[b-oz1x7bnv1v] {
        font-size: 16px;
    }
}
