/* ===========================================
   Containly - Kiosk Mode
   iPad-optimeret check-in/ud interface
   =========================================== */

@keyframes kioskFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes kioskPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* --- Body --- */

.kiosk-body {
    background: oklch(var(--b2, 0.96 0 0));
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    -webkit-user-select: none;
    user-select: none;
}

/* --- Error state --- */

.kiosk-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 32px;
    text-align: center;
    animation: kioskFadeIn 0.4s ease both;
}

.kiosk-error-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: oklch(0.55 0.18 30 / 0.1);
    color: oklch(0.55 0.18 30);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.kiosk-error-title {
    font-size: 24px;
    font-weight: 700;
    color: oklch(var(--bc));
    letter-spacing: -0.03em;
    margin: 0 0 6px;
}

.kiosk-error-desc {
    font-size: 14px;
    color: oklch(var(--bc) / 0.5);
    margin: 0;
}

/* --- Header bar --- */

.kiosk-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: oklch(var(--b1));
    border-bottom: 1px solid oklch(var(--bc) / 0.07);
    position: sticky;
    top: 0;
    z-index: 10;
}

.kiosk-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kiosk-logo {
    font-size: 18px;
    font-weight: 700;
    color: oklch(var(--bc));
    letter-spacing: -0.03em;
}

.kiosk-logo span {
    color: #42B0D5;
}

.kiosk-site-badge {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(66, 176, 213, 0.08);
    color: #42B0D5;
}

.kiosk-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.kiosk-date {
    font-size: 13px;
    font-weight: 500;
    color: oklch(var(--bc) / 0.5);
}

.kiosk-clock {
    font-size: 24px;
    font-weight: 700;
    color: oklch(var(--bc));
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
}

.kiosk-version {
    font-size: 11px;
    font-weight: 500;
    color: oklch(var(--bc) / 0.3);
}

/* --- Worker grid (start screen) --- */

.kiosk-start {
    padding: 24px;
    max-width: 1200px;
    margin: 0 auto;
    animation: kioskFadeIn 0.4s ease both;
}

.kiosk-section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 0 2px;
}

.kiosk-section-label span:first-child {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: oklch(var(--bc) / 0.45);
    white-space: nowrap;
}

.kiosk-section-line {
    flex: 1;
    height: 1px;
    background: oklch(var(--bc) / 0.08);
}

.kiosk-worker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.kiosk-worker-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: oklch(var(--b1));
    border: 1.5px solid oklch(var(--bc) / 0.07);
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.02);
    cursor: pointer;
    transition: all 180ms cubic-bezier(0.16, 1, 0.3, 1);
    animation: kioskSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
    text-align: left;
    font-family: inherit;
}

.kiosk-worker-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 8px 28px rgba(0, 0, 0, 0.05);
    border-color: oklch(var(--bc) / 0.12);
}

.kiosk-worker-card:active {
    transform: scale(0.985);
    transition-duration: 80ms;
}

.kiosk-worker-card--checked-in {
    border-color: oklch(0.45 0.15 145 / 0.2);
}

.kiosk-worker-card--checked-out {
    border-color: oklch(0.55 0.18 30 / 0.2);
    opacity: 0.7;
}

.kiosk-worker-card--checked-out .kiosk-worker-avatar {
    background: oklch(0.55 0.18 30 / 0.1);
    color: oklch(0.55 0.18 30);
}

.kiosk-worker-card--checked-out .kiosk-worker-status {
    color: oklch(0.55 0.18 30);
}

.kiosk-worker-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: oklch(var(--bc) / 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    color: oklch(var(--bc) / 0.5);
    flex-shrink: 0;
}

.kiosk-worker-card--checked-in .kiosk-worker-avatar {
    background: oklch(0.45 0.15 145 / 0.1);
    color: oklch(0.45 0.15 145);
}

.kiosk-worker-info {
    flex: 1;
    min-width: 0;
}

.kiosk-worker-name {
    font-size: 15px;
    font-weight: 600;
    color: oklch(var(--bc));
    letter-spacing: -0.015em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kiosk-worker-status {
    font-size: 12px;
    color: oklch(var(--bc) / 0.45);
    margin-top: 2px;
}

.kiosk-worker-card--checked-in .kiosk-worker-status {
    color: oklch(0.45 0.15 145);
}

.kiosk-status-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: oklch(0.45 0.15 145);
    margin-right: 4px;
    vertical-align: middle;
}

/* --- Avatar med profilbillede --- */

.kiosk-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

/* --- Worker detail view --- */

.kiosk-worker-view {
    padding: 24px;
    max-width: 600px;
    margin: 0 auto;
    animation: kioskFadeIn 0.3s ease both;
}

.kiosk-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1.5px solid oklch(var(--bc) / 0.07);
    border-radius: 10px;
    background: oklch(var(--b1));
    font-size: 13px;
    font-weight: 500;
    color: oklch(var(--bc) / 0.5);
    cursor: pointer;
    transition: all 180ms cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 20px;
    -webkit-tap-highlight-color: transparent;
    font-family: inherit;
}

.kiosk-back-btn:hover {
    border-color: oklch(var(--bc) / 0.12);
    color: oklch(var(--bc));
}

.kiosk-back-btn svg {
    width: 16px;
    height: 16px;
}

.kiosk-worker-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.kiosk-worker-header-avatar {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(66, 176, 213, 0.08);
    color: #42B0D5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    flex-shrink: 0;
}

.kiosk-worker-header-name {
    font-size: 24px;
    font-weight: 700;
    color: oklch(var(--bc));
    letter-spacing: -0.03em;
    margin: 0;
}

.kiosk-worker-header-sub {
    font-size: 13px;
    color: oklch(var(--bc) / 0.5);
    margin-top: 2px;
}

.kiosk-worker-header-avatar--photo {
    overflow: hidden;
}

.kiosk-selfie-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1.5px solid oklch(var(--bc) / 0.07);
    background: oklch(var(--b1));
    color: oklch(var(--bc) / 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 180ms cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}

.kiosk-selfie-btn:hover {
    border-color: #42B0D5;
    color: #42B0D5;
    background: rgba(66, 176, 213, 0.05);
}

.kiosk-selfie-btn:active {
    transform: scale(0.95);
    transition-duration: 80ms;
}

/* --- Check-in / Check-out button --- */

.kiosk-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 20px;
    border: none;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 180ms cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 24px;
    -webkit-tap-highlight-color: transparent;
    font-family: inherit;
}

.kiosk-action-btn:active {
    transform: scale(0.985);
    transition-duration: 80ms;
}

.kiosk-action-btn--checkin {
    background: oklch(0.45 0.15 145);
    color: #fff;
    box-shadow: 0 2px 8px oklch(0.45 0.15 145 / 0.25);
}

.kiosk-action-btn--checkin:hover {
    background: oklch(0.42 0.15 145);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px oklch(0.45 0.15 145 / 0.3);
}

.kiosk-action-btn--checkout {
    background: oklch(0.55 0.18 30);
    color: #fff;
    box-shadow: 0 2px 8px oklch(0.55 0.18 30 / 0.25);
}

.kiosk-action-btn--checkout:hover {
    background: oklch(0.50 0.18 30);
    transform: translateY(-1px);
}

.kiosk-action-btn:disabled {
    opacity: 0.6;
    pointer-events: none;
}

.kiosk-action-btn svg {
    width: 24px;
    height: 24px;
}

/* --- Checkout blocked --- */

.kiosk-checkout-blocked {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    border: 1.5px dashed oklch(var(--bc) / 0.12);
    border-radius: 14px;
    font-size: 13px;
    font-weight: 500;
    color: oklch(var(--bc) / 0.4);
}

.kiosk-checkout-blocked svg {
    flex-shrink: 0;
    color: oklch(0.55 0.18 30 / 0.5);
}

/* --- Done state --- */

.kiosk-done {
    text-align: center;
    padding: 32px 16px;
    animation: kioskSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.kiosk-done-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: oklch(0.45 0.15 145 / 0.1);
    color: oklch(0.45 0.15 145);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.kiosk-done-title {
    font-size: 18px;
    font-weight: 700;
    color: oklch(var(--bc));
    margin: 0 0 4px;
}

.kiosk-done-desc {
    font-size: 13px;
    color: oklch(var(--bc) / 0.5);
    margin: 0;
}

/* --- Break field --- */

.kiosk-break-field {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: oklch(var(--b1));
    border: 1.5px solid oklch(var(--bc) / 0.07);
    border-radius: 14px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.02);
}

.kiosk-break-check {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: oklch(0.45 0.15 145 / 0.1);
    color: oklch(0.45 0.15 145);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kiosk-break-check svg {
    width: 14px;
    height: 14px;
}

.kiosk-break-label {
    font-size: 14px;
    font-weight: 500;
    color: oklch(var(--bc));
}

.kiosk-break-hint {
    font-size: 12px;
    color: oklch(var(--bc) / 0.45);
    margin-left: auto;
}

/* --- Container cards --- */

.kiosk-container-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.kiosk-container-card {
    padding: 14px 16px;
    background: oklch(var(--b1));
    border: 1.5px solid oklch(var(--bc) / 0.07);
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.02);
    animation: kioskSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.kiosk-container-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.kiosk-container-number {
    font-size: 15px;
    font-weight: 600;
    color: oklch(var(--bc));
    letter-spacing: -0.015em;
}

.kiosk-container-customer {
    font-size: 12px;
    color: oklch(var(--bc) / 0.5);
}

.kiosk-status-pill {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.kiosk-status-pill--pending {
    background: oklch(0.75 0.15 70 / 0.15);
    color: oklch(0.55 0.15 70);
}

.kiosk-status-pill--in_progress {
    background: rgba(66, 176, 213, 0.1);
    color: #42B0D5;
}

.kiosk-status-pill--done {
    background: oklch(0.45 0.15 145 / 0.1);
    color: oklch(0.45 0.15 145);
}

.kiosk-status-pill--delayed {
    background: oklch(0.55 0.18 30 / 0.1);
    color: oklch(0.55 0.18 30);
}

.kiosk-container-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.kiosk-container-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    border: 1.5px solid oklch(var(--bc) / 0.07);
    border-radius: 10px;
    background: oklch(var(--b1));
    font-size: 12px;
    font-weight: 600;
    color: oklch(var(--bc) / 0.5);
    cursor: pointer;
    transition: all 180ms cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-tap-highlight-color: transparent;
    font-family: inherit;
}

.kiosk-container-btn:hover {
    border-color: oklch(var(--bc) / 0.12);
    color: oklch(var(--bc));
}

.kiosk-container-btn:active {
    transform: scale(0.985);
    transition-duration: 80ms;
}

.kiosk-container-btn--active {
    background: rgba(66, 176, 213, 0.08);
    border-color: rgba(66, 176, 213, 0.2);
    color: #42B0D5;
}

.kiosk-container-btn--green {
    background: oklch(0.45 0.15 145 / 0.08);
    border-color: oklch(0.45 0.15 145 / 0.2);
    color: oklch(0.45 0.15 145);
}

.kiosk-container-btn--red {
    background: oklch(0.55 0.18 30 / 0.08);
    border-color: oklch(0.55 0.18 30 / 0.2);
    color: oklch(0.55 0.18 30);
}

.kiosk-container-btn--orange {
    background: oklch(0.55 0.15 70 / 0.1);
    border-color: oklch(0.55 0.15 70 / 0.2);
    color: oklch(0.55 0.15 70);
}

.kiosk-container-btn svg {
    width: 14px;
    height: 14px;
}

/* --- Wait time modal --- */

.kiosk-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 24px;
    animation: kioskFadeIn 0.2s ease both;
}

.kiosk-modal {
    width: 100%;
    max-width: 420px;
    background: oklch(var(--b1));
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    animation: kioskSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.kiosk-modal-title {
    font-size: 18px;
    font-weight: 700;
    color: oklch(var(--bc));
    letter-spacing: -0.03em;
    margin: 0 0 16px;
}

.kiosk-modal-field {
    margin-bottom: 14px;
}

.kiosk-modal-label {
    font-size: 12px;
    font-weight: 600;
    color: oklch(var(--bc) / 0.5);
    margin-bottom: 6px;
    display: block;
}

.kiosk-modal-select,
.kiosk-modal-input {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1.5px solid oklch(var(--bc) / 0.07);
    border-radius: 12px;
    background: oklch(var(--b1));
    font-size: 16px;
    font-weight: 500;
    color: oklch(var(--bc));
    outline: none;
    transition: border-color 180ms ease;
    font-family: inherit;
    -webkit-appearance: none;
}

.kiosk-modal-select:focus,
.kiosk-modal-input:focus {
    border-color: #42B0D5;
    box-shadow: 0 0 0 3px rgba(66, 176, 213, 0.1);
}

.kiosk-modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.kiosk-modal-btn {
    flex: 1;
    padding: 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 180ms cubic-bezier(0.16, 1, 0.3, 1);
    border: 1.5px solid transparent;
    -webkit-tap-highlight-color: transparent;
    font-family: inherit;
}

.kiosk-modal-btn--cancel {
    background: oklch(var(--bc) / 0.05);
    color: oklch(var(--bc) / 0.5);
}

.kiosk-modal-btn--cancel:hover {
    background: oklch(var(--bc) / 0.08);
}

.kiosk-modal-btn--confirm {
    background: #42B0D5;
    color: #fff;
    box-shadow: 0 1px 3px rgba(66, 176, 213, 0.15);
}

.kiosk-modal-btn--confirm:hover {
    background: #3a9dc0;
}

.kiosk-modal-btn:disabled {
    opacity: 0.6;
    pointer-events: none;
}

/* --- Wait entries list --- */

.kiosk-wait-list {
    margin-top: 10px;
}

.kiosk-wait-entry {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid oklch(var(--bc) / 0.05);
    font-size: 13px;
}

.kiosk-wait-entry:last-child {
    border-bottom: none;
}

.kiosk-wait-reason {
    flex: 1;
    color: oklch(var(--bc) / 0.5);
}

.kiosk-wait-duration {
    font-weight: 600;
    color: oklch(var(--bc));
}

/* --- Inactivity timer bar --- */

.kiosk-timer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: oklch(var(--bc) / 0.05);
    z-index: 50;
}

.kiosk-timer-progress {
    height: 100%;
    background: #42B0D5;
    transition: width 1s linear;
    border-radius: 0 2px 2px 0;
}

/* --- Time tasks section --- */

.kiosk-timetask-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.kiosk-timetask-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 16px;
    background: oklch(var(--b1));
    border: 1.5px solid oklch(var(--bc) / 0.07);
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.02);
    animation: kioskSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.kiosk-timetask-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kiosk-timetask-actions {
    display: flex;
    gap: 8px;
}

.kiosk-timetask-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: oklch(0.75 0.15 70 / 0.1);
    color: oklch(0.55 0.15 70);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kiosk-timetask-icon svg {
    width: 20px;
    height: 20px;
}

.kiosk-timetask-title {
    font-size: 14px;
    font-weight: 600;
    color: oklch(var(--bc));
}

.kiosk-timetask-sub {
    font-size: 12px;
    color: oklch(var(--bc) / 0.45);
    margin-top: 1px;
}

/* --- Empty state --- */

.kiosk-empty {
    text-align: center;
    padding: 32px 16px;
}

.kiosk-empty-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: oklch(var(--bc) / 0.05);
    color: oklch(var(--bc) / 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.kiosk-empty-icon svg {
    width: 24px;
    height: 24px;
}

.kiosk-empty-text {
    font-size: 14px;
    color: oklch(var(--bc) / 0.45);
}

/* --- Loading --- */

.kiosk-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    animation: kioskPulse 1.5s ease infinite;
    font-size: 14px;
    color: oklch(var(--bc) / 0.35);
}

/* --- QR Photo Upload Modal --- */

.kiosk-qr-modal {
    text-align: center;
    max-width: 380px;
    max-height: 85vh;
    overflow-y: auto;
}

.kiosk-qr-desc {
    font-size: 14px;
    color: oklch(var(--bc) / 0.5);
    margin: 0 0 20px;
    line-height: 1.4;
}

.kiosk-qr-loading {
    padding: 48px 0;
    font-size: 14px;
    color: oklch(var(--bc) / 0.35);
    animation: kioskPulse 1.5s ease infinite;
}

.kiosk-qr-code {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid oklch(var(--bc) / 0.07);
    margin-bottom: 16px;
}

.kiosk-qr-code svg {
    width: 160px;
    height: 160px;
}

/* --- Photo gallery i modal --- */

.kiosk-photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 8px;
    margin-bottom: 16px;
}

.kiosk-photo-thumb {
    position: relative;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    border: 1.5px solid oklch(var(--bc) / 0.07);
}

.kiosk-photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kiosk-photo-thumb-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2px 4px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 9px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 0 0 8px 8px;
}

.kiosk-photo-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 16px;
    margin-bottom: 16px;
    font-size: 13px;
    color: oklch(var(--bc) / 0.35);
}

.kiosk-photo-empty svg {
    flex-shrink: 0;
    color: oklch(var(--bc) / 0.25);
}

.kiosk-qr-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.kiosk-qr-divider span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: oklch(var(--bc) / 0.35);
    white-space: nowrap;
}

.kiosk-qr-divider::before,
.kiosk-qr-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: oklch(var(--bc) / 0.08);
}

.kiosk-qr-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.kiosk-qr-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: oklch(var(--bc) / 0.45);
}

.kiosk-qr-info-item svg {
    flex-shrink: 0;
}

/* --- Responsive: larger screens (iPad) --- */

@media (min-width: 768px) {
    .kiosk-worker-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 14px;
    }

    .kiosk-worker-card {
        padding: 20px;
    }

    .kiosk-worker-avatar {
        width: 52px;
        height: 52px;
        font-size: 16px;
    }

    .kiosk-start {
        padding: 32px;
    }

    .kiosk-worker-view {
        padding: 32px;
        max-width: 640px;
    }
}
