/* /Features/RequestToPay/Components/AmountEntryScreen.razor.rz.scp.css */
.amount-screen[b-eqon1m9ncf] {
    display: flex;
    flex-direction: column;
    min-height: 0;
    flex: 1;
    gap: 0.75rem;
    padding: 0.5rem 0 0;
}

.amount-display[b-eqon1m9ncf] {
    flex-shrink: 0;
    text-align: center;
    padding: 1.25rem 1rem 1rem;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

.amount-display__eyebrow[b-eqon1m9ncf] {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}

.amount-display__value[b-eqon1m9ncf] {
    margin: 0.65rem 0 0;
    font-size: clamp(2.5rem, 12vw, 3.75rem);
    font-weight: 700;
    line-height: 1;
    color: #0a1220;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.03em;
}

.amount-display__hint[b-eqon1m9ncf] {
    margin: 0.55rem 0 0;
    font-size: 0.8125rem;
    color: #94a3b8;
}

.amount-screen__keypad[b-eqon1m9ncf] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    gap: 0.75rem;
    padding: 0.625rem;
    border-radius: 8px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.amount-screen__keypad[b-eqon1m9ncf]  .pos-banner {
    margin-top: 0;
}

.amount-screen__keypad--busy[b-eqon1m9ncf] {
    pointer-events: none;
    opacity: 0.72;
}

.amount-screen__loading[b-eqon1m9ncf] {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.82);
}

.amount-screen[b-eqon1m9ncf] {
    position: relative;
}

.amount-screen__loading-spinner[b-eqon1m9ncf] {
    width: 2.5rem;
    height: 2.5rem;
    border: 3px solid #e5e7eb;
    border-top-color: #22c55e;
    border-radius: 50%;
    animation: amount-spin-b-eqon1m9ncf 0.7s linear infinite;
}

.amount-screen__loading-text[b-eqon1m9ncf] {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
}

@keyframes amount-spin-b-eqon1m9ncf {
    to {
        transform: rotate(360deg);
    }
}
/* /Features/Settings/Components/SettingsSheet.razor.rz.scp.css */
.settings-details[b-vfealrhtqk] {
    margin: 0.75rem 0 0;
    padding: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.settings-details__row[b-vfealrhtqk] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.settings-details__row:last-child[b-vfealrhtqk] {
    border-bottom: none;
}

.settings-details__row dt[b-vfealrhtqk] {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    flex-shrink: 0;
}

.settings-details__row dd[b-vfealrhtqk] {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0a1220;
    text-align: right;
    word-break: break-word;
}

.settings-sheet[b-vfealrhtqk]  .pos-banner {
    margin-top: 0.75rem;
}
/* /Shared/Components/NumPad.razor.rz.scp.css */
.numpad[b-6xo25vz807] {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(92px, 1.15fr);
    grid-template-rows: repeat(3, minmax(52px, 1fr)) minmax(56px, 1.05fr);
    grid-template-areas:
        "d1 d2 d3 delete"
        "d4 d5 d6 reset"
        "d7 d8 d9 enter"
        "zero zero zero enter";
    gap: 0.5rem;
    min-height: 0;
    outline: none;
}

.numpad__key[b-6xo25vz807] {
    border: none;
    border-radius: 8px;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    min-height: 52px;
    padding: 0.35rem;
    transition: opacity 0.12s ease;
    -webkit-tap-highlight-color: transparent;
}

.numpad__key:active:not(:disabled)[b-6xo25vz807] {
    opacity: 0.85;
}

.numpad__key:disabled[b-6xo25vz807] {
    opacity: 0.4;
    cursor: not-allowed;
}

.numpad__key--digit[b-6xo25vz807],
.numpad__key--zero[b-6xo25vz807] {
    background: #ffffff;
    color: #0a1220;
    border: 1px solid #e5e7eb;
}

.numpad__digit[b-6xo25vz807] {
    font-size: clamp(1.35rem, 5vw, 1.65rem);
    font-weight: 600;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.numpad__key--delete[b-6xo25vz807] {
    background: #9ca3af;
    color: #ffffff;
}

.numpad__key--reset[b-6xo25vz807] {
    background: #ef4444;
    color: #ffffff;
}

.numpad__key--enter[b-6xo25vz807] {
    background: #22c55e;
    color: #ffffff;
}

.numpad__key--enter:disabled[b-6xo25vz807] {
    background: #86efac;
    color: #ffffff;
}

.numpad__action-label[b-6xo25vz807] {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.numpad__enter-label[b-6xo25vz807] {
    font-size: clamp(0.95rem, 3.5vw, 1.125rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.12em;
}

.numpad__icon[b-6xo25vz807] {
    width: 1.35rem;
    height: 1.35rem;
}

.numpad__spinner[b-6xo25vz807] {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: numpad-spin-b-6xo25vz807 0.7s linear infinite;
}

@keyframes numpad-spin-b-6xo25vz807 {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 360px) {
    .numpad[b-6xo25vz807] {
        grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(80px, 1fr);
        gap: 0.4rem;
    }
}
