/* /Components/Dashboard/CustomerDetail.razor.rz.scp.css */
.detail-overlay[b-yiimty3yzh] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 50;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    animation: fade-in 200ms ease-out;
}

.detail-panel[b-yiimty3yzh] {
    background: #2a2a2a;
    border-radius: 24px 24px 0 0;
    width: 100%;
    max-width: 900px;
    align-self: center;
    padding: 24px 20px 40px;
    flex-shrink: 0;
    animation: slide-up-b-yiimty3yzh 300ms ease-out;
}

.detail-header[b-yiimty3yzh] {
    position: sticky;
    top: 0;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    /* Span the panel's top padding (24px 20px) so the sticky bar covers content
       edge-to-edge as it scrolls underneath — keeps the close (X) always in view. */
    margin: -24px -20px 16px;
    padding: 24px 20px 14px;
    background: #2a2a2a;
    border-radius: 24px 24px 0 0;
}

.detail-header-left[b-yiimty3yzh] {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;          /* let a long company title wrap instead of pushing the X away */
}

.detail-avatar[b-yiimty3yzh] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #abe2c2;
    color: #383838;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.detail-title[b-yiimty3yzh] {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #efefef;
}

.detail-close[b-yiimty3yzh] {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #383838;
    border: none;
    color: #efefef;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 200ms;
}

.detail-close:hover[b-yiimty3yzh] {
    background: #484848;
}

.detail-sections[b-yiimty3yzh] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-section[b-yiimty3yzh] {
    background: #383838;
    border-radius: 16px;
    padding: 16px;
}

.detail-section-title[b-yiimty3yzh] {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(239, 239, 239, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.detail-text[b-yiimty3yzh] {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #efefef;
    line-height: 1.4;
    white-space: pre-wrap;
}

.detail-row[b-yiimty3yzh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.detail-label[b-yiimty3yzh] {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(239, 239, 239, 0.5);
}

.detail-value[b-yiimty3yzh] {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #efefef;
}

.detail-invoice-row[b-yiimty3yzh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.detail-invoice-info[b-yiimty3yzh] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.detail-invoice-number[b-yiimty3yzh] {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #efefef;
}

.detail-invoice-date[b-yiimty3yzh] {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(239, 239, 239, 0.5);
}

.detail-invoice-amount[b-yiimty3yzh] {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #efefef;
}

.detail-total-row[b-yiimty3yzh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    margin-top: 8px;
    border-top: 2px solid rgba(171, 226, 194, 0.3);
}

.detail-total-label[b-yiimty3yzh] {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #efefef;
}

.detail-total-amount[b-yiimty3yzh] {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #abe2c2;
}

.detail-edit-btn[b-yiimty3yzh] {
    margin-top: 8px;
}

@keyframes slide-up-b-yiimty3yzh {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}
/* /Components/Dashboard/CustomersList.razor.rz.scp.css */
.customers-list[b-jg85088yv2] {
    padding-bottom: 120px;
}

.customers-search[b-jg85088yv2] {
    margin-bottom: 12px;
}

.search-bar[b-jg85088yv2] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #383838;
    border-radius: 9999px;
    height: 40px;
}

.search-icon[b-jg85088yv2] {
    color: rgba(239, 239, 239, 0.5);
    font-size: 14px;
}

.search-input[b-jg85088yv2] {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #efefef;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
}

.search-input[b-jg85088yv2]::placeholder {
    color: rgba(239, 239, 239, 0.3);
}

.new-customer-btn[b-jg85088yv2] {
    width: 100%;
    height: 74px;
    background: #abe2c2;
    border: none;
    border-radius: 20px;
    color: #383838;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    transition: background-color 200ms;
    box-shadow: 1px 4px 4px 0px rgba(0, 0, 0, 0.15);
}

.new-customer-btn:hover[b-jg85088yv2] {
    background: #8cb89f;
}

.customer-cards[b-jg85088yv2] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.customer-card-item[b-jg85088yv2] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: #383838;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 200ms;
}

.customer-card-item:hover[b-jg85088yv2] {
    background: #404040;
}

.customer-card-avatar[b-jg85088yv2] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #abe2c2;
    color: #383838;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.customer-card-info[b-jg85088yv2] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.customer-card-name[b-jg85088yv2] {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #efefef;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.customer-card-count[b-jg85088yv2] {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(239, 239, 239, 0.5);
}

.customer-card-total[b-jg85088yv2] {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #efefef;
    flex-shrink: 0;
}

.empty-customers[b-jg85088yv2] {
    text-align: center;
    padding: 60px 20px;
    color: rgba(239, 239, 239, 0.5);
}

.empty-icon[b-jg85088yv2] {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.3;
}

.empty-hint[b-jg85088yv2] {
    font-size: 14px;
    margin-top: 4px;
}
/* /Components/Dashboard/DashboardHeader.razor.rz.scp.css */
.dashboard-header[b-udolaba4ze] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 0;
}

.dashboard-avatar[b-udolaba4ze] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #abe2c2;
    color: #383838;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.dashboard-user-info[b-udolaba4ze] {
    flex: 1;
    min-width: 0;
}

.dashboard-company-logo[b-udolaba4ze] {
    display: block;
    max-height: 40px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

.dashboard-company-name[b-udolaba4ze] {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #efefef;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    letter-spacing: -0.1px;
}

.dashboard-menu-btn[b-udolaba4ze] {
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    color: rgba(239, 239, 239, 0.5);
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dashboard-menu-btn:hover[b-udolaba4ze] {
    background: rgba(255, 255, 255, 0.05);
    color: #efefef;
}

/* Menu overlay and panel */
.menu-overlay[b-udolaba4ze] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
    animation: fade-in-b-udolaba4ze 200ms ease;
}

.menu-panel[b-udolaba4ze] {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: #242424;
    padding: 24px;
    padding-top: env(safe-area-inset-top);
    animation: slide-in-right-b-udolaba4ze 250ms ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

@keyframes slide-in-right-b-udolaba4ze {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

@keyframes fade-in-b-udolaba4ze {
    from { opacity: 0; }
    to { opacity: 1; }
}

.menu-header[b-udolaba4ze] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.menu-title[b-udolaba4ze] {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #efefef;
}

.menu-close-btn[b-udolaba4ze],
.menu-back-btn[b-udolaba4ze] {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: rgba(239, 239, 239, 0.6);
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-close-btn:hover[b-udolaba4ze],
.menu-back-btn:hover[b-udolaba4ze] {
    background: rgba(255, 255, 255, 0.05);
    color: #efefef;
}

.menu-items[b-udolaba4ze] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-item[b-udolaba4ze] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: none;
    border: none;
    border-radius: 12px;
    color: #efefef;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 200ms;
    width: 100%;
    text-align: left;
}

.menu-item:hover[b-udolaba4ze] {
    background: rgba(255, 255, 255, 0.05);
}

.menu-item i[b-udolaba4ze] {
    width: 20px;
    text-align: center;
    color: rgba(239, 239, 239, 0.5);
    font-size: 16px;
}

.menu-item-logout[b-udolaba4ze] {
    margin-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    border-radius: 0 0 12px 12px;
}

.menu-item-logout i[b-udolaba4ze] {
    color: #ff6b6b;
}

.menu-item-logout span[b-udolaba4ze] {
    color: rgba(239, 239, 239, 0.6);
}

/* Menu body (sub-views) */
.menu-body[b-udolaba4ze] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    overflow-y: auto;
}

.company-logo-preview[b-udolaba4ze] {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.company-logo-preview img[b-udolaba4ze] {
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
    border-radius: 8px;
}

.company-detail-block[b-udolaba4ze] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.company-detail-label[b-udolaba4ze] {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #efefef;
    font-weight: 500;
    letter-spacing: -0.1px;
    line-height: 22px;
}

.company-detail-value[b-udolaba4ze] {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #efefef;
    line-height: 1.5;
    white-space: pre-wrap;
    margin: 0;
}

.company-empty[b-udolaba4ze] {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(239, 239, 239, 0.4);
    margin: 0;
}

.company-email-readonly[b-udolaba4ze] {
    background: #383838;
    border-radius: 20px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-bottom: 10px;
}

.company-email-value[b-udolaba4ze] {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgba(239, 239, 239, 0.65);
    letter-spacing: -0.1px;
    line-height: 22px;
    margin: 0;
}

.logo-upload-section[b-udolaba4ze] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.company-logo-hint[b-udolaba4ze] {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(239, 239, 239, 0.35);
    margin: 0;
    line-height: 1.4;
}

.font-selection-section[b-udolaba4ze] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.font-select[b-udolaba4ze] {
    width: 100%;
    height: 48px;
    background: #383838;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0 16px;
    color: #efefef;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23efefef'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.font-select:focus[b-udolaba4ze] {
    outline: none;
    border-color: #abe2c2;
}

.font-preview[b-udolaba4ze] {
    font-size: 14px;
    color: rgba(239, 239, 239, 0.6);
    margin: 0;
    padding: 10px 0;
}

.company-save-cta[b-udolaba4ze] {
    margin-top: 12px;
    padding-bottom: 20px;
}

/* Google Drive integration */
.drive-section[b-udolaba4ze] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #383838;
    border-radius: 20px;
    padding: 16px 20px;
}

.drive-hint[b-udolaba4ze] {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(239, 239, 239, 0.5);
    line-height: 1.5;
    margin: 0;
}

.drive-account[b-udolaba4ze] {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #efefef;
    margin: 0;
    word-break: break-all;
}

.drive-folder-info[b-udolaba4ze] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.drive-folder-rename[b-udolaba4ze] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 2px;
}

.drive-folder-input[b-udolaba4ze] {
    flex: 1;
    min-width: 0;
    height: 44px;
    background: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0 14px;
    color: #efefef;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.drive-folder-input:focus[b-udolaba4ze] {
    outline: none;
    border-color: #abe2c2;
}

/* Compact secondary buttons inside the Drive card — the global .btn-secondary
   is 74px tall which is too heavy for an inline "Izberi mapo" / connect action. */
.drive-section .btn-secondary[b-udolaba4ze] {
    height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    font-size: 14px;
    gap: 10px;
    width: auto;
    box-shadow: none;
}

.drive-section > .btn-secondary[b-udolaba4ze] {
    width: 100%;
}

.drive-section .btn-secondary i[b-udolaba4ze] {
    font-size: 16px;
    color: #efefef;
}

.drive-section .btn-secondary:disabled[b-udolaba4ze] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Disconnect — quiet, destructive, text-only */
.drive-disconnect[b-udolaba4ze] {
    align-self: flex-start;
    background: none;
    border: none;
    color: #ff6b6b;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 0;
    cursor: pointer;
    text-decoration: none;
}

.drive-disconnect:hover[b-udolaba4ze] {
    text-decoration: underline;
}

/* Two-factor card in the Uporabnik menu — same shell as the Drive card. */
.twofactor-section[b-udolaba4ze] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #383838;
    border-radius: 20px;
    padding: 16px 20px;
}

/* Compact secondary button (the global .btn-secondary is 74px tall — too heavy here). */
.twofactor-section .btn-secondary[b-udolaba4ze] {
    height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    font-size: 14px;
    width: 100%;
    box-shadow: none;
}
/* /Components/Dashboard/InvoiceDetail.razor.rz.scp.css */
.detail-overlay[b-lmwpmbc5yj] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 50;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    overscroll-behavior: contain;
    animation: fade-in-b-lmwpmbc5yj 200ms ease-out;
}

.detail-panel[b-lmwpmbc5yj] {
    background: #2a2a2a;
    border-radius: 24px 24px 0 0;
    width: 100%;
    max-width: 900px;
    max-height: 80vh;
    max-height: 80dvh;
    align-self: center;
    /* No top padding: the sticky header owns the top edge so it stays glued
       there (with the close X) instead of leaving a gap above it on scroll. */
    padding: 0 20px 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    animation: slide-up-b-lmwpmbc5yj 300ms ease-out;
}

.detail-header[b-lmwpmbc5yj] {
    position: sticky;
    top: 0;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Full-bleed across the panel's horizontal padding and glued to its top
       edge: the header supplies the top spacing itself, so it stays stuck to
       the very top as content scrolls underneath — close (X) always in view. */
    margin: 0 -20px 16px;
    padding: 24px 20px 14px;
    background: #2a2a2a;
    border-radius: 24px 24px 0 0;
}

.detail-title[b-lmwpmbc5yj] {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #efefef;
}

.detail-close[b-lmwpmbc5yj] {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #383838;
    border: none;
    color: #efefef;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 200ms;
}

.detail-close:hover[b-lmwpmbc5yj] {
    background: #484848;
}

.detail-sections[b-lmwpmbc5yj] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-section[b-lmwpmbc5yj] {
    background: #383838;
    border-radius: 16px;
    padding: 16px;
}

.detail-section-title[b-lmwpmbc5yj] {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(239, 239, 239, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.detail-text[b-lmwpmbc5yj] {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #efefef;
    line-height: 1.4;
    white-space: pre-wrap;
}

.detail-text-secondary[b-lmwpmbc5yj] {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(239, 239, 239, 0.5);
    margin-top: 4px;
}

.detail-row[b-lmwpmbc5yj] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.detail-row-full[b-lmwpmbc5yj] {
    padding: 6px 0;
}

.detail-label[b-lmwpmbc5yj] {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(239, 239, 239, 0.5);
}

.detail-value[b-lmwpmbc5yj] {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #efefef;
}

.detail-item-row[b-lmwpmbc5yj] {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-column-gap: 12px;
    align-items: baseline;
    padding: 8px 0;
}

.detail-item-name[b-lmwpmbc5yj] {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #efefef;
    grid-column: 1;
    grid-row: 1;
}

.detail-item-calc[b-lmwpmbc5yj] {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #abe2c2;
    white-space: nowrap;
    grid-column: 2;
    grid-row: 1;
}

.detail-item-vat[b-lmwpmbc5yj] {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(239, 239, 239, 0.55);
    white-space: nowrap;
    text-align: right;
    grid-column: 2;
    grid-row: 2;
    margin-top: 2px;
}

.detail-subtotal-row[b-lmwpmbc5yj] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-top: 1px solid rgba(239, 239, 239, 0.08);
}

.detail-subtotal-label[b-lmwpmbc5yj] {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(239, 239, 239, 0.55);
}

.detail-subtotal-amount[b-lmwpmbc5yj] {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(239, 239, 239, 0.75);
}

.detail-reverse-charge[b-lmwpmbc5yj] {
    margin-top: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(239, 239, 239, 0.55);
    line-height: 1.5;
}

.edit-item-vat[b-lmwpmbc5yj] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 10px 2px;
}

.edit-item-vat-amount[b-lmwpmbc5yj] {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(239, 239, 239, 0.65);
}

.detail-total-row[b-lmwpmbc5yj] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    margin-top: 8px;
    border-top: 2px solid rgba(171, 226, 194, 0.3);
}

.detail-total-label[b-lmwpmbc5yj] {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #efefef;
}

.detail-total-amount[b-lmwpmbc5yj] {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #abe2c2;
}

.detail-status[b-lmwpmbc5yj] {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(239, 239, 239, 0.5);
}

.detail-status.status-issued[b-lmwpmbc5yj] {
    color: #abe2c2;
}

.detail-pdf-btn[b-lmwpmbc5yj] {
    width: 100%;
    height: 56px;
    background: #abe2c2;
    color: #383838;
    border: none;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 200ms;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.detail-pdf-btn:hover[b-lmwpmbc5yj] {
    background: #8cb89f;
}

.detail-pdf-btn:disabled[b-lmwpmbc5yj] {
    opacity: 0.6;
    cursor: not-allowed;
}

.detail-edit-btn[b-lmwpmbc5yj] {
    width: 100%;
    height: 56px;
    background: #383838;
    color: #efefef;
    border: none;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 200ms;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.detail-edit-btn:hover[b-lmwpmbc5yj] {
    background: #484848;
}

.detail-share-btn[b-lmwpmbc5yj] {
    width: 100%;
    height: 56px;
    background: #383838;
    color: #efefef;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 200ms;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.detail-share-btn:hover[b-lmwpmbc5yj] {
    background: #484848;
}

.detail-share-btn:disabled[b-lmwpmbc5yj] {
    opacity: 0.6;
    cursor: not-allowed;
}

.detail-share-btn i.fa-google-drive[b-lmwpmbc5yj] {
    color: #efefef;
    font-size: 18px;
}

.edit-item-block[b-lmwpmbc5yj] {
    margin-bottom: 10px;
}

.edit-add-item[b-lmwpmbc5yj] {
    margin-top: 8px;
    margin-bottom: 12px;
}

.edit-save-btn[b-lmwpmbc5yj] {
    margin-top: 8px;
}

.edit-cancel-btn[b-lmwpmbc5yj] {
    margin-top: 10px;
}

.edit-delete-btn[b-lmwpmbc5yj] {
    background: none;
    border: none;
    color: rgba(239, 239, 239, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 14px 8px;
    margin-top: 8px;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 200ms;
    align-self: center;
}

.edit-delete-btn:hover[b-lmwpmbc5yj] {
    color: #ff8a8a;
}

.edit-delete-btn:disabled[b-lmwpmbc5yj] {
    opacity: 0.5;
    cursor: not-allowed;
}

.confirm-overlay[b-lmwpmbc5yj] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fade-in-b-lmwpmbc5yj 200ms ease-out;
}

.confirm-dialog[b-lmwpmbc5yj] {
    background: #2a2a2a;
    border-radius: 20px;
    padding: 24px 20px;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.confirm-title[b-lmwpmbc5yj] {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #efefef;
    margin: 0;
}

.confirm-text[b-lmwpmbc5yj] {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(239, 239, 239, 0.75);
    line-height: 1.5;
    margin: 0;
}

.confirm-actions[b-lmwpmbc5yj] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px;
}

@keyframes slide-up-b-lmwpmbc5yj {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@keyframes fade-in-b-lmwpmbc5yj {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* /Components/Dashboard/InvoicesList.razor.rz.scp.css */
.invoices-list[b-bddthv3b7q] {
    padding-bottom: 120px;
}

.year-selector[b-bddthv3b7q] {
    position: relative;
    margin-bottom: 12px;
}

.year-selector-btn[b-bddthv3b7q] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: #383838;
    border: none;
    border-radius: 9999px;
    color: #efefef;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 200ms;
}

.year-selector-btn:hover[b-bddthv3b7q] {
    background: #404040;
}

.year-selector-chevron[b-bddthv3b7q] {
    font-size: 12px;
    color: rgba(239, 239, 239, 0.75);
    transition: transform 200ms;
}

.year-selector-btn.open .year-selector-chevron[b-bddthv3b7q] {
    transform: rotate(180deg);
}

.year-menu-overlay[b-bddthv3b7q] {
    position: fixed;
    inset: 0;
    z-index: 40;
}

.year-menu[b-bddthv3b7q] {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 41;
    min-width: 220px;
    background: #383838;
    border-radius: 16px;
    padding: 6px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.year-menu-item[b-bddthv3b7q] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    background: transparent;
    border: none;
    border-radius: 10px;
    color: #efefef;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: background-color 200ms;
}

.year-menu-item:hover[b-bddthv3b7q] {
    background: #4a4a4a;
}

.year-menu-item.active[b-bddthv3b7q] {
    background: rgba(171, 226, 194, 0.15);
    color: #abe2c2;
}

.year-menu-item.active i[b-bddthv3b7q] {
    font-size: 12px;
}

/* No card: the revenue figure and its chart sit straight on the page background. */
.revenue-section[b-bddthv3b7q] {
    margin-bottom: 16px;
    padding: 4px 4px 0;
}

.revenue-label[b-bddthv3b7q] {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(239, 239, 239, 0.5);
    display: block;
    margin-bottom: 8px;
}

.revenue-amount[b-bddthv3b7q] {
    display: flex;
    align-items: baseline;
}

.revenue-euro[b-bddthv3b7q] {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #efefef;
    line-height: 1;
}

.revenue-whole[b-bddthv3b7q] {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #efefef;
    line-height: 1;
}

.revenue-decimal[b-bddthv3b7q] {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: rgba(239, 239, 239, 0.75);
    line-height: 1;
}

.invoices-search[b-bddthv3b7q] {
    margin-bottom: 12px;
}

.search-bar[b-bddthv3b7q] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #383838;
    border-radius: 9999px;
    height: 40px;
}

.search-icon[b-bddthv3b7q] {
    color: rgba(239, 239, 239, 0.5);
    font-size: 14px;
}

.search-input[b-bddthv3b7q] {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #efefef;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
}

.search-input[b-bddthv3b7q]::placeholder {
    color: rgba(239, 239, 239, 0.3);
}

.new-invoice-cta[b-bddthv3b7q] {
    margin-bottom: 16px;
}

.invoice-cards[b-bddthv3b7q] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.invoice-card[b-bddthv3b7q] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: #383838;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 200ms;
}

.invoice-card:hover[b-bddthv3b7q] {
    background: #404040;
}

.invoice-card-left[b-bddthv3b7q] {
    flex-shrink: 0;
}

.invoice-number-badge[b-bddthv3b7q] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #4a4a4a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: rgba(239, 239, 239, 0.75);
    position: relative;
}

.invoice-number-badge.issued[b-bddthv3b7q] {
    background: rgba(171, 226, 194, 0.15);
    color: #abe2c2;
}

.badge-check[b-bddthv3b7q] {
    position: absolute;
    bottom: -2px;
    right: -2px;
    font-size: 14px;
    color: #abe2c2;
    background: #383838;
    border-radius: 50%;
    padding: 1px;
}

.invoice-card-center[b-bddthv3b7q] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.invoice-customer[b-bddthv3b7q] {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #efefef;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.invoice-date[b-bddthv3b7q] {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(239, 239, 239, 0.5);
}

.invoice-card-right[b-bddthv3b7q] {
    flex-shrink: 0;
}

.invoice-amount[b-bddthv3b7q] {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #efefef;
}

.empty-invoices[b-bddthv3b7q] {
    text-align: center;
    padding: 60px 20px;
    color: rgba(239, 239, 239, 0.5);
}

.empty-icon[b-bddthv3b7q] {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.3;
}

.empty-hint[b-bddthv3b7q] {
    font-size: 14px;
    margin-top: 4px;
}
/* /Components/Dashboard/RevenueChart.razor.rz.scp.css */
/* Apple-Stock-style cumulative revenue line. Lives on the default background
   (no card). The horizontal scroller keeps exactly two months in the viewport
   at any time: each month column is 50% of the visible width, so N months make
   the inner track N*50% wide. */
.revenue-chart[b-8v6efxzmq1] {
    margin-top: 4px;
}

.chart-scroll[b-8v6efxzmq1] {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Let vertical page scroll win; horizontal drag scrubs the timeline. */
    touch-action: pan-x;
}

.chart-scroll[b-8v6efxzmq1]::-webkit-scrollbar {
    display: none;
}

.chart-inner[b-8v6efxzmq1] {
    position: relative;
    width: calc(var(--months, 2) * 50%);
    min-width: 100%;
}

.chart-plot[b-8v6efxzmq1] {
    position: relative;
    height: 188px;
}

.chart-svg[b-8v6efxzmq1] {
    display: block;
    width: 100%;
    height: 100%;
}

/* preserveAspectRatio="none" stretches the viewBox horizontally; the
   non-scaling-stroke attribute keeps the line an even 2px everywhere. */
.chart-line[b-8v6efxzmq1] {
    stroke: var(--color-accent);
    stroke-width: 2;
    stroke-linejoin: round;
    stroke-linecap: round;
}

.chart-dot[b-8v6efxzmq1] {
    position: absolute;
    width: 14px;
    height: 14px;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.chart-dot-core[b-8v6efxzmq1] {
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(171, 226, 194, 0.18),
                0 0 10px rgba(171, 226, 194, 0.55);
}

.chart-dot-pulse[b-8v6efxzmq1] {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--color-accent);
    opacity: 0.45;
    animation: chart-pulse-b-8v6efxzmq1 2.4s ease-out infinite;
}

@keyframes chart-pulse-b-8v6efxzmq1 {
    0% { transform: scale(0.7); opacity: 0.45; }
    100% { transform: scale(2.6); opacity: 0; }
}

.chart-months[b-8v6efxzmq1] {
    position: relative;
    height: 18px;
    margin-top: 8px;
}

.chart-month[b-8v6efxzmq1] {
    position: absolute;
    transform: translateX(-50%);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: rgba(239, 239, 239, 0.4);
    letter-spacing: 0.2px;
    white-space: nowrap;
}
/* /Components/Invoice/CustomerModal.razor.rz.scp.css */
.customer-modal-overlay[b-egzmugmlgi] {
    position: fixed;
    inset: 0;
    z-index: 50;
    background: linear-gradient(147.47deg, rgb(54, 54, 54) 8.13%, rgb(24, 24, 24) 89.63%);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-top: env(safe-area-inset-top);
    animation: modal-scale-in 300ms ease-out;
}

.customer-modal[b-egzmugmlgi] {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.customer-modal-cta[b-egzmugmlgi] {
    margin-top: 30px;
}

.customer-delete-btn[b-egzmugmlgi] {
    background: none;
    border: none;
    color: rgba(239, 239, 239, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 14px 8px;
    margin-top: 8px;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 200ms;
    width: 100%;
    text-align: center;
}

.customer-delete-btn:hover[b-egzmugmlgi] {
    color: #ff8a8a;
}

.customer-delete-btn:disabled[b-egzmugmlgi] {
    opacity: 0.5;
    cursor: not-allowed;
}

.confirm-overlay[b-egzmugmlgi] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fade-in-b-egzmugmlgi 200ms ease-out;
}

.confirm-dialog[b-egzmugmlgi] {
    background: #2a2a2a;
    border-radius: 20px;
    padding: 24px 20px;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.confirm-title[b-egzmugmlgi] {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #efefef;
    margin: 0;
}

.confirm-text[b-egzmugmlgi] {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(239, 239, 239, 0.75);
    line-height: 1.5;
    margin: 0;
}

.confirm-actions[b-egzmugmlgi] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px;
}

@keyframes fade-in-b-egzmugmlgi {
    from { opacity: 0; }
    to { opacity: 1; }
}

.additional-email-row[b-egzmugmlgi] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.additional-email-field[b-egzmugmlgi] {
    flex: 1;
    min-width: 0;
}

.additional-email-remove[b-egzmugmlgi] {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: rgba(239, 239, 239, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.additional-email-remove:hover[b-egzmugmlgi] {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
}

.additional-email-add[b-egzmugmlgi] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

/* The invoice-language picker is the shared <SelectField>, styled in its own component. */
/* /Components/Invoice/EditableInfoCard.razor.rz.scp.css */
.info-card[b-gznrplqnkl] {
    background: #383838;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 10px;
}

.info-card-title[b-gznrplqnkl] {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(239, 239, 239, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.info-card-content[b-gznrplqnkl] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
/* /Components/Invoice/InvoicePreview.razor.rz.scp.css */
.preview[b-q0o05z3izp] {
    padding-bottom: 40px;
}

.preview-content[b-q0o05z3izp] {
    margin-top: 10px;
}

.preview-detail[b-q0o05z3izp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.preview-label[b-q0o05z3izp] {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(239, 239, 239, 0.5);
}

.preview-value[b-q0o05z3izp] {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #efefef;
}

.preview-item[b-q0o05z3izp] {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-column-gap: 12px;
    align-items: baseline;
    padding: 10px 0;
}

.preview-item-desc[b-q0o05z3izp] {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #efefef;
    grid-column: 1;
    grid-row: 1;
}

.preview-item-vat[b-q0o05z3izp] {
    grid-column: 2;
    grid-row: 2;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(239, 239, 239, 0.55);
    text-align: right;
    white-space: nowrap;
    margin-top: 4px;
}

.preview-subtotal[b-q0o05z3izp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-top: 1px solid rgba(239, 239, 239, 0.08);
}

.preview-subtotal-label[b-q0o05z3izp] {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(239, 239, 239, 0.55);
}

.preview-subtotal-amount[b-q0o05z3izp] {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(239, 239, 239, 0.75);
}

.preview-reverse-charge[b-q0o05z3izp] {
    margin-top: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(239, 239, 239, 0.55);
    line-height: 1.5;
}

.preview-item-amount[b-q0o05z3izp] {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #abe2c2;
    text-align: right;
    white-space: nowrap;
    margin-left: 12px;
}

.preview-total[b-q0o05z3izp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    margin-top: 8px;
    border-top: 2px solid rgba(171, 226, 194, 0.3);
}

.preview-total-label[b-q0o05z3izp] {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #efefef;
}

.preview-total-amount[b-q0o05z3izp] {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #abe2c2;
}

.preview-cta[b-q0o05z3izp] {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Mirrors the "Dodaj postavko" button on the items step. */
.add-recipient-btn[b-q0o05z3izp] {
    margin-top: 12px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.recipient-preview-btn[b-q0o05z3izp],
.recipient-preview-pdf[b-q0o05z3izp] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Shorter than the standard 74px CTA and unshrinkable: inside the sheet every pixel it gives up
   goes to the e-mail preview, but a flex column would otherwise squash it instead of the iframe. */
.recipient-preview-pdf[b-q0o05z3izp] {
    height: 56px;
    flex-shrink: 0;
}

/* Full-screen sheet showing the exact recipient e-mail; the sandboxed iframe
   hosts the light-themed, inline-styled e-mail HTML untouched. */
.recipient-preview-overlay[b-q0o05z3izp] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    padding-top: calc(12px + env(safe-area-inset-top));
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
}

/* The e-mail body is a fixed 600px card inside a 16px-padded wrapper, so the iframe needs ~650px
   before the browser adds a horizontal scrollbar on top of the vertical one. The panel is sized
   generously past that, and the chrome around the iframe is kept tight, because every pixel the
   sheet gives back is a line of the e-mail the user can read without scrolling. */
.recipient-preview-panel[b-q0o05z3izp] {
    width: 100%;
    max-width: 880px;
    height: 100%;
    background: #242424;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (max-width: 700px) {
    .recipient-preview-overlay[b-q0o05z3izp] {
        padding: 8px;
        padding-top: calc(8px + env(safe-area-inset-top));
        padding-bottom: calc(8px + env(safe-area-inset-bottom));
    }

    .recipient-preview-panel[b-q0o05z3izp] {
        padding: 12px;
    }
}

.recipient-preview-header[b-q0o05z3izp] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.recipient-preview-title[b-q0o05z3izp] {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #efefef;
}

.recipient-preview-close[b-q0o05z3izp] {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: rgba(239, 239, 239, 0.6);
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recipient-preview-close:hover[b-q0o05z3izp] {
    background: rgba(255, 255, 255, 0.05);
    color: #efefef;
}

.recipient-preview-subject[b-q0o05z3izp] {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(239, 239, 239, 0.7);
    overflow-wrap: anywhere;
}

/* The meta lines are reference info, not the point of the sheet — keep them from eating the
   height the e-mail preview needs when there are many recipients or attachments. */
.recipient-preview-meta[b-q0o05z3izp] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-height: 84px;
    overflow-y: auto;
    flex-shrink: 0;
}

.recipient-preview-frame[b-q0o05z3izp] {
    flex: 1;
    width: 100%;
    border: none;
    border-radius: 10px;
    background: #ffffff;
}
/* /Components/Invoice/InvoiceStep1.razor.rz.scp.css */
.step1[b-c4rebby1a2] {
    padding-bottom: 40px;
}

.customer-list[b-c4rebby1a2] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.customer-card[b-c4rebby1a2] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: #383838;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 200ms;
}

.customer-card:hover[b-c4rebby1a2] {
    background: #404040;
}

.customer-avatar[b-c4rebby1a2] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #abe2c2;
    color: #383838;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.customer-info[b-c4rebby1a2] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.customer-name[b-c4rebby1a2] {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #efefef;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.customer-email[b-c4rebby1a2] {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(239, 239, 239, 0.5);
}

.customer-arrow[b-c4rebby1a2] {
    color: rgba(239, 239, 239, 0.3);
    font-size: 14px;
    flex-shrink: 0;
}

.empty-state[b-c4rebby1a2] {
    text-align: center;
    padding: 40px 20px;
}

.empty-text[b-c4rebby1a2] {
    font-family: 'Inter', sans-serif;
    color: rgba(239, 239, 239, 0.5);
    font-size: 16px;
}

.step1-cta[b-c4rebby1a2] {
    margin-top: 20px;
}
/* /Components/Invoice/InvoiceStep3Items.razor.rz.scp.css */
.step3-items[b-2yqyuv5fns] {
    padding-bottom: 40px;
}

.billing-item[b-2yqyuv5fns] {
    margin-bottom: 10px;
}

.billing-item-vat[b-2yqyuv5fns] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 10px 2px;
}

.billing-item-vat-amount[b-2yqyuv5fns] {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(239, 239, 239, 0.65);
}

.total-breakdown[b-2yqyuv5fns] {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(239, 239, 239, 0.55);
}

.reverse-charge-hint[b-2yqyuv5fns] {
    margin: 10px auto 0;
    max-width: 320px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(239, 239, 239, 0.55);
    line-height: 1.5;
    text-align: center;
}

.total-divider[b-2yqyuv5fns] {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #efefef;
    padding: 10px 0;
}

.total-display[b-2yqyuv5fns] {
    text-align: center;
    padding: 10px 0 20px;
}

.total-amount[b-2yqyuv5fns] {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.total-euro[b-2yqyuv5fns] {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 400;
    color: #efefef;
    line-height: normal;
}

.total-whole[b-2yqyuv5fns] {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 500;
    color: #efefef;
    line-height: normal;
}

.total-decimal[b-2yqyuv5fns] {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: rgba(239, 239, 239, 0.75);
    line-height: normal;
}

.total-label[b-2yqyuv5fns] {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #efefef;
    margin-top: 4px;
}

.step3-cta[b-2yqyuv5fns] {
    margin-top: 10px;
}

.step3-secondary[b-2yqyuv5fns] {
    margin-top: 10px;
}
/* /Components/Invoice/InvoiceStep4Issuer.razor.rz.scp.css */
.step4-issuer[b-qkdajkjept] {
    padding-bottom: 40px;
}

.issuer-hint[b-qkdajkjept] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #c4a0d0;
    border-radius: 20px;
    color: #efefef;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.1px;
    margin-bottom: 10px;
}

.issuer-hint i[b-qkdajkjept] {
    font-size: 20px;
}

.logo-hint[b-qkdajkjept] {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(239, 239, 239, 0.5);
    margin-top: 4px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.logo-upload-section[b-qkdajkjept] {
    background: #383838;
    border-radius: 20px;
    padding: 10px 20px;
    margin-bottom: 10px;
}

.logo-upload-label[b-qkdajkjept] {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #efefef;
    letter-spacing: -0.1px;
    line-height: 22px;
    display: block;
    margin-bottom: 8px;
}

.step4-cta[b-qkdajkjept] {
    margin-top: 10px;
}
/* /Components/Invoice/InvoiceStep5Details.razor.rz.scp.css */
.step5-details[b-jk96ogomye] {
    padding-bottom: 40px;
}

.step5-cta[b-jk96ogomye] {
    margin-top: 30px;
}
/* /Components/Invoice/InvoiceSuccessScreen.razor.rz.scp.css */
.success-screen[b-4y49ubaum0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.success-content[b-4y49ubaum0] {
    text-align: center;
    width: 100%;
}

.success-icon[b-4y49ubaum0] {
    font-size: 80px;
    color: #abe2c2;
    margin-bottom: 30px;
}

.success-title[b-4y49ubaum0] {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #efefef;
    margin-bottom: 16px;
    line-height: 1.3;
}

.success-highlight[b-4y49ubaum0] {
    color: #abe2c2;
}

.success-message[b-4y49ubaum0] {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(239, 239, 239, 0.5);
    line-height: 1.5;
    margin-bottom: 40px;
}

.success-actions[b-4y49ubaum0] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 40px;
}

.btn-primary[b-4y49ubaum0] {
    width: 100%;
    height: 74px;
    background: var(--color-accent);
    color: var(--color-text-dark);
    border: none;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 200ms;
    box-shadow: 1px 4px 4px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover[b-4y49ubaum0] {
    background: var(--color-accent-hover);
}

.btn-secondary[b-4y49ubaum0] {
    width: 100%;
    height: 74px;
    background: var(--color-surface);
    color: var(--color-text-primary);
    border: none;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 200ms;
    box-shadow: 1px 4px 4px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover[b-4y49ubaum0] {
    background: #484848;
}

/* .btn-tertiary is global (app.css). */

.success-actions .btn-secondary i.fa-google-drive[b-4y49ubaum0] {
    color: #efefef;
    font-size: 18px;
    margin-right: 10px;
}
/* /Components/Shared/AddToHomeSheet.razor.rz.scp.css */
.a2hs-overlay[b-4m8y9qf3do] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 200;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    animation: a2hs-fade-in-b-4m8y9qf3do 250ms ease-out;
}

.a2hs-overlay.closing[b-4m8y9qf3do] {
    animation: a2hs-fade-out-b-4m8y9qf3do 300ms ease-in forwards;
}

.a2hs-sheet[b-4m8y9qf3do] {
    width: 100%;
    max-width: 900px;
    background: #2a2a2a;
    border-radius: 24px 24px 0 0;
    padding: 0 24px;
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
    animation: a2hs-slide-up-b-4m8y9qf3do 300ms cubic-bezier(0.16, 1, 0.3, 1);
    touch-action: none;
}

.a2hs-sheet.closing[b-4m8y9qf3do] {
    animation: a2hs-slide-down-b-4m8y9qf3do 300ms ease-in forwards;
}

.a2hs-handle-bar[b-4m8y9qf3do] {
    display: flex;
    justify-content: center;
    padding: 12px 0 8px;
}

.a2hs-handle[b-4m8y9qf3do] {
    width: 36px;
    height: 4px;
    border-radius: 2px;
    background: rgba(239, 239, 239, 0.2);
}

.a2hs-content[b-4m8y9qf3do] {
    padding-bottom: 8px;
}

.a2hs-title[b-4m8y9qf3do] {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #efefef;
    margin-bottom: 8px;
    line-height: 1.3;
}

.a2hs-desc[b-4m8y9qf3do] {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: rgba(239, 239, 239, 0.65);
    line-height: 1.5;
    margin-bottom: 4px;
}

.a2hs-sub[b-4m8y9qf3do] {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(239, 239, 239, 0.35);
    line-height: 1.4;
    margin-bottom: 24px;
}

.a2hs-actions[b-4m8y9qf3do] {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.a2hs-dismiss-btn[b-4m8y9qf3do] {
    width: 100%;
    height: 52px;
    background: none;
    border: none;
    color: rgba(239, 239, 239, 0.5);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: color 200ms;
}

.a2hs-dismiss-btn:hover[b-4m8y9qf3do] {
    color: rgba(239, 239, 239, 0.7);
}

/* Instructions state */
.a2hs-instructions[b-4m8y9qf3do] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.a2hs-platform[b-4m8y9qf3do] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.a2hs-platform-label[b-4m8y9qf3do] {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: rgba(239, 239, 239, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.a2hs-steps[b-4m8y9qf3do] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.a2hs-step[b-4m8y9qf3do] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.a2hs-step-num[b-4m8y9qf3do] {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #abe2c2;
    color: #2a2a2a;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.a2hs-step-text[b-4m8y9qf3do] {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #efefef;
    line-height: 1.4;
}

.a2hs-step-text i[b-4m8y9qf3do] {
    color: #abe2c2;
    margin: 0 2px;
}

.a2hs-step-text strong[b-4m8y9qf3do] {
    font-weight: 600;
}

/* Animations */
@keyframes a2hs-slide-up-b-4m8y9qf3do {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@keyframes a2hs-slide-down-b-4m8y9qf3do {
    from { transform: translateY(0); }
    to { transform: translateY(100%); }
}

@keyframes a2hs-fade-in-b-4m8y9qf3do {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes a2hs-fade-out-b-4m8y9qf3do {
    from { opacity: 1; }
    to { opacity: 0; }
}
/* /Components/Shared/AttachmentDropField.razor.rz.scp.css */
.attachment-drop-field[b-nxsyw0rwsx] {
    margin-bottom: 10px;
}

.attachment-drop-area[b-nxsyw0rwsx] {
    position: relative; /* anchors the invisible full-size InputFile for click + drop */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 22px 20px;
    background: #383838;
    border: 2px dashed rgba(239, 239, 239, 0.2);
    border-radius: 20px;
    cursor: pointer;
    transition: border-color 200ms;
    text-align: center;
}

.attachment-drop-area:hover[b-nxsyw0rwsx],
.attachment-drop-area:focus-within[b-nxsyw0rwsx] {
    border-color: #abe2c2;
}

/* Stretch the native file input across the whole area so dropping a file
   anywhere on it lands in the input (no JS involved). */
[b-nxsyw0rwsx] .attachment-drop-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.attachment-drop-icon[b-nxsyw0rwsx] {
    font-size: 20px;
    color: #abe2c2;
}

.attachment-drop-title[b-nxsyw0rwsx] {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(239, 239, 239, 0.75);
}

.attachment-drop-hint[b-nxsyw0rwsx] {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(239, 239, 239, 0.4);
    line-height: 1.4;
}

.attachment-selected[b-nxsyw0rwsx] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #383838;
    border-radius: 20px;
}

.attachment-selected-icon[b-nxsyw0rwsx] {
    font-size: 20px;
    color: #abe2c2;
}

.attachment-selected-info[b-nxsyw0rwsx] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.attachment-selected-name[b-nxsyw0rwsx] {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #efefef;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.attachment-selected-note[b-nxsyw0rwsx] {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(239, 239, 239, 0.4);
}

.attachment-remove-btn[b-nxsyw0rwsx] {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: rgba(239, 239, 239, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.attachment-remove-btn:hover[b-nxsyw0rwsx] {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
}
/* /Components/Shared/BottomNavigation.razor.rz.scp.css */
.bottom-nav[b-w3t84mklg5] {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 32px;
    padding: 10px 32px;
    background: rgba(27, 27, 27, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 9999px;
    z-index: 40;
    justify-content: center;
    max-width: calc(100% - 32px);
}

@media (min-width: 768px) {
    .bottom-nav[b-w3t84mklg5] {
        gap: 40px;
        padding: 12px 40px;
    }
}

.bottom-nav-btn[b-w3t84mklg5] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 19px;
    border-radius: 9999px;
    transition: opacity 200ms;
    color: #efefef;
    opacity: 0.4;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .bottom-nav-btn[b-w3t84mklg5] {
        gap: 4px;
        padding: 8px 24px;
    }
}

.bottom-nav-btn.active[b-w3t84mklg5] {
    opacity: 1;
    color: #abe2c2;
}

.nav-icon[b-w3t84mklg5] {
    width: 43px;
    height: 43px;
    object-fit: contain;
}

@media (min-width: 768px) {
    .nav-icon[b-w3t84mklg5] {
        width: 74px;
        height: 74px;
    }
}

.bottom-nav-btn:hover[b-w3t84mklg5] {
    opacity: 0.7;
}
/* /Components/Shared/CheckboxField.razor.rz.scp.css */
.checkbox-field[b-tu55znr5vn] {
    background: #383838;
    border-radius: 20px;
    border: 3px solid transparent;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    margin-bottom: 10px;
    cursor: pointer;
    transition: border-color 200ms;
    user-select: none;
}

.checkbox-field:hover[b-tu55znr5vn] {
    border-color: rgba(171, 226, 194, 0.35);
}

.checkbox-field.checked[b-tu55znr5vn] {
    border-color: #abe2c2;
}

.checkbox-box[b-tu55znr5vn] {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: 2px solid rgba(239, 239, 239, 0.5);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 200ms, border-color 200ms;
}

.checkbox-field.checked .checkbox-box[b-tu55znr5vn] {
    background: #abe2c2;
    border-color: #abe2c2;
}

.checkbox-box i[b-tu55znr5vn] {
    color: #1a1a1a;
    font-size: 14px;
}

.checkbox-label[b-tu55znr5vn] {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #efefef;
    line-height: 20px;
    letter-spacing: -0.1px;
}
/* /Components/Shared/CompanyAutocompleteField.razor.rz.scp.css */
.company-autocomplete[b-3k92ga77vi] {
    position: relative;
}

.form-field-card[b-3k92ga77vi] {
    background: #383838;
    border-radius: 20px;
    border: 3px solid transparent;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-bottom: 10px;
    transition: border-color 200ms;
}

.form-field-card:focus-within[b-3k92ga77vi] {
    border-color: #abe2c2;
}

.form-field-label[b-3k92ga77vi] {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #efefef;
    letter-spacing: -0.1px;
    line-height: 22px;
}

.form-field-input[b-3k92ga77vi] {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #efefef;
    letter-spacing: -0.1px;
    line-height: 22px;
    resize: none;
}

.form-field-input[b-3k92ga77vi]::placeholder {
    color: rgba(239, 239, 239, 0.33);
    font-weight: 600;
}

.company-suggestions[b-3k92ga77vi] {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 20;
    list-style: none;
    margin: 0;
    padding: 6px;
    background: #2b2b2b;
    border: 1px solid #4a4a4a;
    border-radius: 14px;
    max-height: 260px;
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.company-suggestion-item[b-3k92ga77vi] {
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
    color: #efefef;
    transition: background 120ms;
}

.company-suggestion-item:hover[b-3k92ga77vi] {
    background: #3b3b3b;
}

.company-suggestion-name[b-3k92ga77vi] {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.1px;
    line-height: 20px;
}

.company-suggestion-meta[b-3k92ga77vi] {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(239, 239, 239, 0.6);
    line-height: 18px;
    margin-top: 2px;
}

.company-search-status[b-3k92ga77vi] {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 20;
    padding: 10px 12px;
    background: #2b2b2b;
    border: 1px solid #4a4a4a;
    border-radius: 14px;
    color: rgba(239, 239, 239, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    text-align: center;
}
/* /Components/Shared/DateField.razor.rz.scp.css */
.date-field-card[b-zotjo8w5tp] {
    background: #383838;
    border-radius: 20px;
    border: 3px solid transparent;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    margin-bottom: 10px;
    transition: border-color 200ms;
}

.date-field-card:hover[b-zotjo8w5tp] {
    border-color: rgba(171, 226, 194, 0.3);
}

.date-field-left[b-zotjo8w5tp] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.date-field-label[b-zotjo8w5tp] {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(239, 239, 239, 0.5);
}

.date-field-value[b-zotjo8w5tp] {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #efefef;
    letter-spacing: -0.1px;
}

.date-field-edit-icon[b-zotjo8w5tp] {
    font-size: 14px;
    color: rgba(239, 239, 239, 0.5);
}
/* /Components/Shared/DatePicker.razor.rz.scp.css */
.datepicker-overlay[b-ohu6bfi3nf] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    animation: fade-in 200ms ease-out;
}

.datepicker-modal[b-ohu6bfi3nf] {
    background: #383838;
    border-radius: 20px;
    padding: 20px;
    width: 340px;
    max-width: 90vw;
    animation: fade-scale-in 200ms ease-out;
}

.datepicker-header[b-ohu6bfi3nf] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.datepicker-month-year[b-ohu6bfi3nf] {
    font-size: 18px;
    font-weight: 600;
    color: #efefef;
    text-transform: capitalize;
}

.datepicker-nav[b-ohu6bfi3nf] {
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    color: #abe2c2;
    font-size: 16px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.datepicker-nav:hover[b-ohu6bfi3nf] {
    background: rgba(255, 255, 255, 0.1);
}

.datepicker-today-btn[b-ohu6bfi3nf] {
    width: 100%;
    padding: 8px;
    background: rgba(171, 226, 194, 0.1);
    border: 1px solid #abe2c2;
    border-radius: 10px;
    color: #abe2c2;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 16px;
    transition: background-color 200ms;
}

.datepicker-today-btn:hover[b-ohu6bfi3nf] {
    background: rgba(171, 226, 194, 0.2);
}

.datepicker-weekdays[b-ohu6bfi3nf] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 12px;
    color: #a0a0a0;
    font-weight: 600;
    margin-bottom: 8px;
}

.datepicker-grid[b-ohu6bfi3nf] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.datepicker-day[b-ohu6bfi3nf] {
    width: 100%;
    aspect-ratio: 1;
    border: none;
    background: none;
    color: #efefef;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 150ms;
}

.datepicker-day:hover[b-ohu6bfi3nf] {
    background: rgba(255, 255, 255, 0.1);
}

.datepicker-day.other-month[b-ohu6bfi3nf] {
    color: #666;
}

.datepicker-day.today[b-ohu6bfi3nf] {
    color: #abe2c2;
    font-weight: 700;
}

.datepicker-day.selected[b-ohu6bfi3nf] {
    background: #abe2c2;
    color: #1b281b;
    font-weight: 700;
}

.datepicker-actions[b-ohu6bfi3nf] {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.datepicker-cancel[b-ohu6bfi3nf],
.datepicker-apply[b-ohu6bfi3nf] {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background-color 200ms;
}

.datepicker-cancel[b-ohu6bfi3nf] {
    background: #4a4a4a;
    color: #efefef;
}

.datepicker-cancel:hover[b-ohu6bfi3nf] {
    background: #555;
}

.datepicker-apply[b-ohu6bfi3nf] {
    background: #abe2c2;
    color: #1b281b;
}

.datepicker-apply:hover[b-ohu6bfi3nf] {
    background: #8cb89f;
}
/* /Components/Shared/EditableTextField.razor.rz.scp.css */
.editable-card[b-m7850xt595] {
    background: #383838;
    border-radius: 20px;
    border: 3px solid transparent;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    cursor: pointer;
    margin-bottom: 10px;
    transition: border-color 200ms;
}

.editable-card.focused[b-m7850xt595] {
    border-color: #abe2c2;
}

.editable-label[b-m7850xt595] {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #efefef;
    letter-spacing: -0.1px;
    line-height: 22px;
}

.editable-value-row[b-m7850xt595] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.editable-display[b-m7850xt595] {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #efefef;
    letter-spacing: -0.1px;
    line-height: 22px;
    word-break: break-word;
}

.editable-display.placeholder[b-m7850xt595] {
    color: rgba(239, 239, 239, 0.5);
}

.editable-suffix[b-m7850xt595] {
    margin-left: 5px;
    color: rgba(239, 239, 239, 0.55);
}

.editable-input[b-m7850xt595] {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #efefef;
    letter-spacing: -0.1px;
    line-height: 22px;
    resize: none;
    min-height: 22px;
}

.editable-input[b-m7850xt595]::placeholder {
    color: rgba(239, 239, 239, 0.33);
}

.editable-remove[b-m7850xt595] {
    background: none;
    border: none;
    color: #454545;
    font-size: 26px;
    cursor: pointer;
    transition: color 200ms;
    flex-shrink: 0;
}

.editable-remove:hover[b-m7850xt595] {
    color: #666;
}
/* /Components/Shared/FileUploadField.razor.rz.scp.css */
.file-upload-field[b-fjgxesx6in] {
    margin-bottom: 10px;
}

.file-upload-area[b-fjgxesx6in] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 20px;
    background: #383838;
    border: 2px dashed rgba(239, 239, 239, 0.2);
    border-radius: 20px;
    cursor: pointer;
    transition: border-color 200ms;
}

.file-upload-area:hover[b-fjgxesx6in] {
    border-color: #abe2c2;
}

.file-upload-icon[b-fjgxesx6in] {
    font-size: 20px;
    color: #abe2c2;
}

.file-upload-text[b-fjgxesx6in] {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgba(239, 239, 239, 0.5);
}

.file-upload-selected[b-fjgxesx6in] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #383838;
    border-radius: 20px;
}

.file-selected-icon[b-fjgxesx6in] {
    font-size: 20px;
    color: #abe2c2;
}

.file-selected-name[b-fjgxesx6in] {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #efefef;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-remove-btn[b-fjgxesx6in] {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: rgba(239, 239, 239, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.file-remove-btn:hover[b-fjgxesx6in] {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
}
/* /Components/Shared/FormField.razor.rz.scp.css */
.form-field-card[b-j4icalwoph] {
    background: #383838;
    border-radius: 20px;
    border: 3px solid transparent;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-bottom: 10px;
    transition: border-color 200ms;
}

.form-field-card:focus-within[b-j4icalwoph] {
    border-color: #abe2c2;
}

.form-field-label[b-j4icalwoph] {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #efefef;
    letter-spacing: -0.1px;
    line-height: 22px;
}

.form-field-input[b-j4icalwoph] {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #efefef;
    letter-spacing: -0.1px;
    line-height: 22px;
    resize: none;
}

.form-field-input[b-j4icalwoph]::placeholder {
    color: rgba(239, 239, 239, 0.33);
    font-weight: 600;
}

/* Suffix variant: value + unit on one baseline, e.g. "30 dni". */
.form-field-row[b-j4icalwoph] {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

/* Tabular figures make every digit exactly 1ch wide, which is what the inline
   width:Nch on the input relies on to hug the value. */
.form-field-input-sized[b-j4icalwoph] {
    width: auto;
    min-width: 1ch;
    font-variant-numeric: tabular-nums;
}

.form-field-suffix[b-j4icalwoph] {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgba(239, 239, 239, 0.55);
    letter-spacing: -0.1px;
    line-height: 22px;
    white-space: nowrap;
}

/* Spinners would sit between the value and its unit and steal the width the
   inline ch sizing hands out, so drop them on number inputs. */
.form-field-input[b-j4icalwoph]::-webkit-outer-spin-button,
.form-field-input[b-j4icalwoph]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-field-input[type="number"][b-j4icalwoph] {
    -moz-appearance: textfield;
    appearance: textfield;
}
/* /Components/Shared/FormFieldWithUnit.razor.rz.scp.css */
.form-field-unit-card[b-f0vrbjro26] {
    background: #383838;
    border-radius: 20px;
    border: 3px solid transparent;
    padding: 10px 20px;
    margin-bottom: 10px;
    position: relative;
    transition: border-color 200ms;
}

.form-field-unit-card:focus-within[b-f0vrbjro26] {
    border-color: #abe2c2;
}

.form-field-unit-top[b-f0vrbjro26] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-field-unit-label[b-f0vrbjro26] {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(239, 239, 239, 0.5);
}

.unit-badge[b-f0vrbjro26] {
    background: none;
    border: none;
    color: #abe2c2;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 2px 6px;
}

.unit-chevron[b-f0vrbjro26] {
    font-size: 10px;
}

.unit-dropdown[b-f0vrbjro26] {
    position: absolute;
    top: 10px;
    right: 20px;
    background: #4a4a4a;
    border-radius: 10px;
    padding: 4px;
    display: flex;
    gap: 4px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.unit-option[b-f0vrbjro26] {
    padding: 6px 14px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #efefef;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 200ms;
}

.unit-option.active[b-f0vrbjro26] {
    background: #abe2c2;
    color: #383838;
}

.unit-option:hover:not(.active)[b-f0vrbjro26] {
    background: rgba(255, 255, 255, 0.1);
}

.form-field-unit-input[b-f0vrbjro26] {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #efefef;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 4px 0 2px;
    letter-spacing: -0.1px;
}

.form-field-unit-input[b-f0vrbjro26]::placeholder {
    color: rgba(239, 239, 239, 0.3);
}
/* /Components/Shared/MobileLayout.razor.rz.scp.css */
.mobile-layout[b-2x4mcw9mpc] {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 0 20px;
    padding-top: env(safe-area-inset-top);
    position: relative;
}
/* /Components/Shared/ModalHeader.razor.rz.scp.css */
.modal-header-bar[b-tpww2l3w4i] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.modal-header-title[b-tpww2l3w4i] {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #efefef;
    text-align: center;
    flex: 1;
    letter-spacing: -0.3px;
}

.modal-header-btn[b-tpww2l3w4i] {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: rgba(239, 239, 239, 0.5);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: color 200ms;
}

.modal-header-btn:hover[b-tpww2l3w4i] {
    color: #efefef;
}
/* /Components/Shared/NovaStrankaButton.razor.rz.scp.css */
.nova-stranka-btn[b-lg6jru9mag] {
    width: 100%;
    height: 74px;
    background: #abe2c2;
    border: none;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 20px;
    cursor: pointer;
    transition: background-color 200ms;
    box-shadow: 1px 4px 4px 0px rgba(0, 0, 0, 0.15);
}

.nova-stranka-btn:hover[b-lg6jru9mag] {
    background: #8cb89f;
}

.nova-stranka-icon-circle[b-lg6jru9mag] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #383838;
    font-size: 18px;
    order: -1;
}

.nova-stranka-text[b-lg6jru9mag] {
    flex: 1;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #383838;
    letter-spacing: -0.1px;
}

.nova-stranka-arrow[b-lg6jru9mag] {
    color: #4caf50;
    font-size: 18px;
}
/* /Components/Shared/NumericDisplayField.razor.rz.scp.css */
.numeric-display-field[b-yqfpom6xtw] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #383838;
    border-radius: 20px;
    cursor: pointer;
    margin-bottom: 10px;
}

.numeric-display-icon[b-yqfpom6xtw] {
    font-size: 40px;
    color: #abe2c2;
    width: 50px;
    text-align: center;
    flex-shrink: 0;
}

.numeric-display-value[b-yqfpom6xtw] {
    flex: 1;
    display: flex;
    align-items: baseline;
}

.numeric-display-whole[b-yqfpom6xtw] {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 500;
    color: #efefef;
    line-height: 1;
}

.numeric-display-decimal[b-yqfpom6xtw] {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: rgba(239, 239, 239, 0.75);
    line-height: 1;
}

.numeric-display-edit[b-yqfpom6xtw] {
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    color: rgba(239, 239, 239, 0.5);
    cursor: pointer;
    font-size: 16px;
    flex-shrink: 0;
}

.numeric-display-edit:hover[b-yqfpom6xtw] {
    color: #abe2c2;
}
/* /Components/Shared/NumericInputField.razor.rz.scp.css */
.numeric-field[b-zszxb92z0d] {
    background: #383838;
    border: 3px solid transparent;
    border-radius: 20px;
    padding: 20px 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    cursor: pointer;
    transition: border-color 200ms, background-color 200ms;
    position: relative;
    margin-bottom: 10px;
}

.numeric-field.focused[b-zszxb92z0d] {
    border-color: #abe2c2;
}

.numeric-field:hover:not(.focused)[b-zszxb92z0d] {
    background: #262626;
}

.numeric-display-area[b-zszxb92z0d] {
    height: 68px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.numeric-value-layout[b-zszxb92z0d] {
    display: flex;
    align-items: baseline;
}

.numeric-icon-glyph[b-zszxb92z0d] {
    font-size: 56px;
    color: #efefef;
    line-height: normal;
    margin-right: 6px;
}

.numeric-euro-symbol[b-zszxb92z0d] {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 500;
    color: #efefef;
    line-height: normal;
    margin-right: 6px;
}

/* Auto-sizing input. The hidden ::after carries the same text and is the only thing in flow, so the
   box is exactly as wide as the value; the input is taken out of flow on top of it. Sizing the box
   from a plain in-flow input does not work — an <input> contributes its own default ~20-character
   width to the layout no matter how narrow its content is, which pushed the comma far off the last
   digit. Keeping the ::after in flow also keeps the baseline the two font sizes align on. */
.numeric-sizer[b-zszxb92z0d] {
    position: relative;
    display: inline-block;
    padding-right: 2px; /* caret room past the last digit */
}

.numeric-sizer[b-zszxb92z0d]::after {
    content: attr(data-value);
    display: block;
    min-width: 3px; /* keeps the caret visible once every digit is deleted */
    visibility: hidden;
    white-space: pre;
}

.numeric-input[b-zszxb92z0d] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    min-width: 0;
    background: none;
    border: none;
    outline: none;
    padding: 0;
    font: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    caret-color: #abe2c2;
    cursor: text;
}

.numeric-whole[b-zszxb92z0d] {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 500;
    color: #efefef;
    line-height: normal;
}

.numeric-comma[b-zszxb92z0d] {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: rgba(239, 239, 239, 0.75);
    line-height: normal;
    transition: color 150ms;
}

.numeric-decimals[b-zszxb92z0d] {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: rgba(239, 239, 239, 0.75);
    line-height: normal;
    transition: color 150ms;
}

/* Caret has moved past the comma: brighten both so it is obvious which half is being typed. */
.numeric-comma.active[b-zszxb92z0d] {
    color: #ffffff;
}

.numeric-decimals.active[b-zszxb92z0d] {
    color: #efefef;
}

.numeric-label[b-zszxb92z0d] {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #efefef;
    text-align: center;
    line-height: 22px;
    min-width: 100%;
}

.numeric-unit-btn[b-zszxb92z0d] {
    background: none;
    border: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #efefef;
    line-height: 22px;
}

.numeric-dropdown-arrow[b-zszxb92z0d] {
    color: #abe2c2;
    cursor: pointer;
    margin-left: 4px;
}

.numeric-unit-dropdown[b-zszxb92z0d] {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 8px;
    background: #4a4a4a;
    border-radius: 12px;
    padding: 4px;
    display: flex;
    gap: 4px;
    z-index: 20;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.numeric-unit-option[b-zszxb92z0d] {
    padding: 8px 14px;
    border: none;
    border-radius: 9px;
    background: transparent;
    color: #efefef;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 200ms;
}

.numeric-unit-option.active[b-zszxb92z0d] {
    background: #abe2c2;
    color: #383838;
}

.numeric-unit-option:hover:not(.active)[b-zszxb92z0d] {
    background: rgba(255, 255, 255, 0.1);
}

.numeric-remove-btn[b-zszxb92z0d] {
    position: absolute;
    right: 20px;
    top: 20px;
    background: none;
    border: none;
    color: #454545;
    font-size: 26px;
    cursor: pointer;
    z-index: 10;
    transition: color 200ms;
}

.numeric-remove-btn:hover[b-zszxb92z0d] {
    color: #666;
}
/* /Components/Shared/PageHeader.razor.rz.scp.css */
.page-header[b-146yf75ybc] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.page-header-spacer[b-146yf75ybc] {
    width: 40px;
}

.page-header-title[b-146yf75ybc] {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #efefef;
    text-align: center;
    flex: 1;
    letter-spacing: -0.3px;
}

.page-header-close[b-146yf75ybc] {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: rgba(239, 239, 239, 0.5);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: color 200ms, background-color 200ms;
}

.page-header-close:hover[b-146yf75ybc] {
    color: #efefef;
    background-color: rgba(255, 255, 255, 0.05);
}
/* /Components/Shared/SectionHeading.razor.rz.scp.css */
.section-heading[b-jj0u6zl9h3] {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #efefef;
    padding: 16px 0 10px;
    letter-spacing: -0.1px;
}
/* /Components/Shared/SelectField.razor.rz.scp.css */
/* Mirrors .form-field-card so a dropdown lines up with the text fields around it. */
.select-field-card[b-scfs0kqsso] {
    background: #383838;
    border-radius: 20px;
    border: 3px solid transparent;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    margin-bottom: 10px;
    transition: border-color 200ms;
}

.select-field-card:focus-within[b-scfs0kqsso] {
    border-color: #abe2c2;
}

.select-field-label[b-scfs0kqsso] {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #efefef;
    letter-spacing: -0.1px;
    line-height: 22px;
    cursor: pointer;
}

.select-field-control[b-scfs0kqsso] {
    position: relative;
    display: flex;
    align-items: center;
}

.select-field-select[b-scfs0kqsso] {
    width: 100%;
    /* Strip the native control chrome (grey bevel + system font) that made this read as an
       unstyled browser widget dropped into the dark form. */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border: none;
    outline: none;
    color: #efefef;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.1px;
    line-height: 22px;
    /* Right padding clears the chevron; the row is tall enough to be a comfortable tap target. */
    padding: 4px 28px 4px 0;
    cursor: pointer;
    text-overflow: ellipsis;
}

/* The popup list is drawn by the OS, so it needs its own dark colours — otherwise Windows/Chrome
   renders white-on-white for a moment against the dark app. */
.select-field-select option[b-scfs0kqsso] {
    background: #383838;
    color: #efefef;
}

.select-field-chevron[b-scfs0kqsso] {
    position: absolute;
    right: 2px;
    font-size: 12px;
    color: #abe2c2;
    pointer-events: none;
}

.select-field-hint[b-scfs0kqsso] {
    margin: 2px 0 0;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(239, 239, 239, 0.4);
    line-height: 1.4;
}
/* /Components/Shared/StepIndicator.razor.rz.scp.css */
.step-indicator[b-2nwblikrl8] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
}

.step-dot[b-2nwblikrl8] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #383838;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-dot.active[b-2nwblikrl8] {
    background: rgba(171, 226, 194, 0.2);
}

.step-dot-inner[b-2nwblikrl8] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #abe2c2;
}
/* /Components/Shared/ValidationToast.razor.rz.scp.css */
.validation-toast[b-pa4sjd5l47] {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(56, 56, 56, 0.95);
    border: 2px solid #ff6b6b;
    border-radius: 20px;
    z-index: 100;
    animation: toast-slide-in 300ms ease-out;
    max-width: 90vw;
    backdrop-filter: blur(10px);
}

.validation-toast.toast-success[b-pa4sjd5l47] {
    border-color: #abe2c2;
}

.validation-toast.toast-info[b-pa4sjd5l47] {
    border-color: #6ba6ff;
}

.toast-icon[b-pa4sjd5l47] {
    color: #ff6b6b;
    font-size: 18px;
    flex-shrink: 0;
}

.validation-toast.toast-success .toast-icon[b-pa4sjd5l47] {
    color: #abe2c2;
}

.validation-toast.toast-info .toast-icon[b-pa4sjd5l47] {
    color: #6ba6ff;
}

.toast-message[b-pa4sjd5l47] {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #efefef;
}

.toast-close[b-pa4sjd5l47] {
    background: none;
    border: none;
    color: rgba(239, 239, 239, 0.5);
    cursor: pointer;
    font-size: 14px;
    flex-shrink: 0;
    padding: 4px;
}

.toast-close:hover[b-pa4sjd5l47] {
    color: #efefef;
}

.toast-link[b-pa4sjd5l47] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 10px;
    color: #abe2c2;
    text-decoration: underline;
    font-weight: 600;
    white-space: nowrap;
}

.toast-link:hover[b-pa4sjd5l47] {
    color: #c8eedb;
}

.toast-link i[b-pa4sjd5l47] {
    font-size: 11px;
}
/* /Components/Shared/VatRateSelector.razor.rz.scp.css */
.vat-selector[b-un87ca324e] {
    position: relative;
    display: inline-block;
}

.vat-selector-trigger[b-un87ca324e] {
    background: #383838;
    border: 2px solid transparent;
    border-radius: 14px;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #efefef;
    cursor: pointer;
    transition: border-color 200ms;
}

.vat-selector.open .vat-selector-trigger[b-un87ca324e] {
    border-color: #abe2c2;
}

.vat-label[b-un87ca324e] {
    color: rgba(239, 239, 239, 0.6);
    font-size: 12px;
    font-weight: 500;
}

.vat-rate[b-un87ca324e] {
    color: #efefef;
}

.vat-arrow[b-un87ca324e] {
    font-size: 11px;
    color: rgba(239, 239, 239, 0.6);
    transition: transform 200ms;
}

.vat-selector.open .vat-arrow[b-un87ca324e] {
    transform: rotate(180deg);
}

.vat-options[b-un87ca324e] {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 4px;
    background: #2a2a2a;
    border-radius: 14px;
    list-style: none;
    padding: 6px;
    min-width: 120px;
    z-index: 20;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.vat-option[b-un87ca324e] {
    padding: 8px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #efefef;
    border-radius: 10px;
    cursor: pointer;
}

.vat-option:hover[b-un87ca324e] {
    background: #3a3a3a;
}

.vat-option.selected[b-un87ca324e] {
    background: #abe2c2;
    color: #1a1a1a;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.app-container[b-t087sp2owq] {
    min-height: 100vh;
}
/* /Pages/Admin.razor.rz.scp.css */
/* Skrbništvo (admin dashboard). Styled against the app's dark design tokens
   (see :root in wwwroot/css/app.css) so it matches the rest of the app. */

.admin[b-o13avpxepj] {
    padding: 16px 0 96px;
    max-width: 1100px;
    margin: 0 auto;
    font-family: var(--font-family);
}

.admin-top[b-o13avpxepj] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-top: 8px;
}
.admin-top h1[b-o13avpxepj] {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
    color: var(--color-text-primary);
    letter-spacing: -0.2px;
}

.admin-back[b-o13avpxepj] {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--color-surface);
    border-radius: 12px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: background 200ms;
}
.admin-back:hover[b-o13avpxepj] { background: var(--color-surface-hover); }

.admin-muted[b-o13avpxepj] { color: rgba(239, 239, 239, 0.5); }

.admin-error[b-o13avpxepj] {
    background: rgba(255, 107, 107, 0.12);
    color: var(--color-error);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 12px;
    padding: 10px 14px;
    margin-bottom: 12px;
    font-size: .9rem;
}

/* KPI cards */
.admin-cards[b-o13avpxepj] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 28px;
}
.admin-card[b-o13avpxepj] {
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.admin-card-num[b-o13avpxepj] {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--color-text-primary);
    letter-spacing: -0.5px;
}
.admin-card-lbl[b-o13avpxepj] { font-size: .82rem; color: rgba(239, 239, 239, 0.5); }

.admin-section[b-o13avpxepj] { margin-bottom: 28px; }
.admin-section h2[b-o13avpxepj] {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 14px;
    color: var(--color-text-primary);
}

/* Weekly bar charts */
.admin-bars[b-o13avpxepj] {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 150px;
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 16px 16px 10px;
    overflow-x: auto;
}
.admin-bar-col[b-o13avpxepj] {
    flex: 1 0 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    gap: 4px;
}
.admin-bar-val[b-o13avpxepj] { font-size: .7rem; color: rgba(239, 239, 239, 0.5); height: 14px; }
.admin-bar[b-o13avpxepj] {
    width: 70%;
    min-height: 2px;
    background: var(--color-accent);
    border-radius: 6px 6px 0 0;
    transition: height .2s;
}
.admin-bar-lbl[b-o13avpxepj] { font-size: .65rem; color: rgba(239, 239, 239, 0.35); white-space: nowrap; }

/* Maintenance actions */
.admin-maint[b-o13avpxepj] {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 16px 20px;
}
.admin-maint-info[b-o13avpxepj] { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.admin-maint-title[b-o13avpxepj] { font-size: .95rem; font-weight: 600; color: var(--color-text-primary); }
.admin-maint-sub[b-o13avpxepj] { font-size: .8rem; color: rgba(239, 239, 239, 0.5); line-height: 1.4; }
.admin-note[b-o13avpxepj] { margin-top: 10px; font-size: .85rem; color: var(--color-accent); }

/* Users table */
.admin-table-wrap[b-o13avpxepj] {
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    background: var(--color-surface);
}
.admin-table[b-o13avpxepj] { width: 100%; border-collapse: collapse; font-size: .85rem; }
.admin-table th[b-o13avpxepj], .admin-table td[b-o13avpxepj] { padding: 12px 14px; text-align: left; white-space: nowrap; }
.admin-table thead th[b-o13avpxepj] {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(239, 239, 239, 0.55);
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.admin-table tbody td[b-o13avpxepj] { color: var(--color-text-primary); }
.admin-table tbody tr[b-o13avpxepj] { border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.admin-table tbody tr:last-child[b-o13avpxepj] { border-bottom: none; }
.admin-table tbody tr:hover[b-o13avpxepj] { background: rgba(255, 255, 255, 0.02); }
.admin-table tr.is-disabled[b-o13avpxepj] { opacity: .5; }

/* Pills */
.admin-pill[b-o13avpxepj] {
    display: inline-block;
    font-size: .7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(239, 239, 239, 0.7);
    margin-left: 4px;
}
.admin-pill-admin[b-o13avpxepj] { background: var(--color-accent); color: var(--color-text-dark); }
.admin-pill-warn[b-o13avpxepj] { background: rgba(255, 193, 7, 0.18); color: #ffca45; }

/* Row action buttons */
.admin-actions[b-o13avpxepj] { display: flex; gap: 6px; }
.admin-btn[b-o13avpxepj] {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-text-primary);
    border-radius: 10px;
    padding: 8px 14px;
    font-size: .78rem;
    font-weight: 600;
    font-family: var(--font-family);
    cursor: pointer;
    white-space: nowrap;
    transition: background 200ms;
}
.admin-btn:hover:not(:disabled)[b-o13avpxepj] { background: var(--color-surface-hover); }
.admin-btn:disabled[b-o13avpxepj] { opacity: .5; cursor: default; }
.admin-btn-danger[b-o13avpxepj] { color: var(--color-error); border-color: rgba(255, 107, 107, 0.35); }
.admin-btn-danger:hover:not(:disabled)[b-o13avpxepj] { background: rgba(255, 107, 107, 0.12); }

/* Delete confirmation modal */
.admin-modal-overlay[b-o13avpxepj] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1000;
}
.admin-modal[b-o13avpxepj] {
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    max-width: 420px;
    width: 100%;
}
.admin-modal-title[b-o13avpxepj] {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--color-text-primary);
}
.admin-modal-text[b-o13avpxepj] {
    font-size: .9rem;
    line-height: 1.5;
    color: rgba(239, 239, 239, 0.7);
    margin: 0 0 20px;
}
.admin-modal-text strong[b-o13avpxepj] { color: var(--color-text-primary); }
.admin-modal-actions[b-o13avpxepj] { display: flex; gap: 10px; }
.admin-modal-actions .admin-btn[b-o13avpxepj] { flex: 1; text-align: center; justify-content: center; }
/* /Pages/Index.razor.rz.scp.css */
.verify-banner[b-3633bjnayp] {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(234, 179, 8, 0.12);
    border: 1px solid rgba(234, 179, 8, 0.35);
    color: #fcd34d;
    padding: 12px 14px;
    border-radius: 10px;
    margin: 0 0 16px 0;
    font-size: 14px;
    line-height: 1.4;
}

.verify-banner-text[b-3633bjnayp] {
    flex: 1;
}

.verify-banner-btn[b-3633bjnayp] {
    flex-shrink: 0;
    background: rgba(234, 179, 8, 0.18);
    border: 1px solid rgba(234, 179, 8, 0.5);
    color: #fcd34d;
    border-radius: 8px;
    padding: 6px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

.verify-banner-btn:disabled[b-3633bjnayp] {
    opacity: 0.6;
    cursor: default;
}
/* /Pages/IssueInvoice.razor.rz.scp.css */
/* Result screens for the anonymous funnel (check-email / account-exists). Mirrors the post-save
   success screen so the funnel's terminal states match the rest of the app. */
.success-screen[b-k3zar96z5z] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.success-content[b-k3zar96z5z] {
    text-align: center;
    width: 100%;
}

.success-icon[b-k3zar96z5z] {
    font-size: 80px;
    color: #abe2c2;
    margin-bottom: 30px;
}

.success-title[b-k3zar96z5z] {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #efefef;
    margin-bottom: 16px;
    line-height: 1.3;
}

.success-highlight[b-k3zar96z5z] {
    color: #abe2c2;
}

.success-message[b-k3zar96z5z] {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(239, 239, 239, 0.5);
    line-height: 1.5;
    margin-bottom: 16px;
}

.success-message a[b-k3zar96z5z] {
    color: #abe2c2;
}

.success-actions[b-k3zar96z5z] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 40px;
}

/* .btn-tertiary is global (app.css). */
.btn-primary[b-k3zar96z5z] {
    width: 100%;
    height: 74px;
    border: none;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 200ms;
    box-shadow: 1px 4px 4px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--color-accent);
    color: var(--color-text-dark);
}

.btn-primary:hover[b-k3zar96z5z] {
    background: var(--color-accent-hover);
}
/* /Pages/Landing.razor.rz.scp.css */
/* ============================================================
   Normiračun landing page — ported 1:1 from the Figma design.
   Fixed 1440px canvas (pixel-faithful at design width).
   Mobile responsiveness is a planned follow-up.
   ============================================================ */

.lp[b-99ju3l6oyt] {
    --navy: #1b1d24;
    --mint: #a8ebc8;
    --mint-2: #abe2c2;
    --mint-strong: #8cd9b3;
    --text: #fafafb;
    --muted: #a8acb5;
    --card: rgba(35, 38, 47, 0.85);
    --border: rgba(255, 255, 255, 0.08);
    --sans: 'Inter', sans-serif;
    --serif: 'Instrument Serif', Georgia, serif;
    --hand: 'Caveat', cursive;

    width: 100%;
    min-height: 100vh;
    background: var(--navy);
    color: var(--text);
    font-family: var(--sans);
    overflow-x: clip;
}

.lp-canvas[b-99ju3l6oyt] {
    width: 1440px;
    margin: 0 auto;
    position: relative;
}

.lp *[b-99ju3l6oyt], .lp *[b-99ju3l6oyt]::before, .lp *[b-99ju3l6oyt]::after { box-sizing: border-box; }
.lp h1[b-99ju3l6oyt], .lp h2[b-99ju3l6oyt], .lp h3[b-99ju3l6oyt], .lp p[b-99ju3l6oyt], .lp ul[b-99ju3l6oyt], .lp figure[b-99ju3l6oyt] { margin: 0; }
.lp a[b-99ju3l6oyt] { color: inherit; text-decoration: none; }
.lp ul[b-99ju3l6oyt] { list-style: none; padding: 0; }
.lp img[b-99ju3l6oyt] { display: block; }

/* Button labels must win over the generic `.lp a { color: inherit }` link reset
   (otherwise the mint CTAs render with near-white text on a light background). */
.lp a.lp-btn-pill[b-99ju3l6oyt],
.lp a.lp-btn-primary[b-99ju3l6oyt] { color: var(--navy); }
.lp a.lp-btn-outline[b-99ju3l6oyt] { color: var(--mint); }
.lp a.lp-final-btn[b-99ju3l6oyt] { color: var(--text); }

/* serif italic mint accent used throughout headings */
.lp em[b-99ju3l6oyt] {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--mint);
}

/* ---------- shared atoms ---------- */
.lp-eyebrow[b-99ju3l6oyt] {
    display: block;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--mint);
}
.lp-center[b-99ju3l6oyt] { text-align: center; }

.lp-h2[b-99ju3l6oyt] {
    font-size: 48px;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: -0.96px;
    color: var(--text);
}
.lp-h2 em[b-99ju3l6oyt] { font-size: 54px; line-height: 60px; }

.lp-btn-pill[b-99ju3l6oyt], .lp-btn-outline[b-99ju3l6oyt], .lp-btn-primary[b-99ju3l6oyt],
.lp-final-btn[b-99ju3l6oyt], .lp-news-btn[b-99ju3l6oyt] {
    transition: background-color .2s ease, box-shadow .2s ease,
                transform .15s ease, color .2s ease;
}

.lp-btn-pill[b-99ju3l6oyt] {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 8px 15px; border-radius: 999px;
    background: var(--mint); color: var(--navy);
    font-size: 14px; font-weight: 600; line-height: 20px;
    white-space: nowrap;
}
.lp-btn-outline[b-99ju3l6oyt] {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 8px 15px; border-radius: 999px;
    border: 2px solid var(--mint); color: var(--mint);
    font-size: 14px; font-weight: 600; line-height: 20px;
    white-space: nowrap;
}
.lp-btn-primary[b-99ju3l6oyt] {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 15px 30px; border-radius: 999px;
    background: var(--mint); color: var(--navy);
    font-size: 16px; font-weight: 600; line-height: 24px;
    white-space: nowrap;
    box-shadow: 0 20px 30px rgba(168, 235, 200, 0.45);
}
.lp-btn-pill:hover[b-99ju3l6oyt], .lp-btn-primary:hover[b-99ju3l6oyt], .lp-news-btn:hover[b-99ju3l6oyt] { background: var(--mint-strong); }
.lp-btn-primary:hover[b-99ju3l6oyt] { box-shadow: 0 24px 38px rgba(168, 235, 200, 0.6); transform: translateY(-1px); }
.lp-btn-outline:hover[b-99ju3l6oyt] { background: rgba(168, 235, 200, 0.12); }

/* ============================================================
   HEADER / STICKY NAV
   ============================================================ */
.lp-header[b-99ju3l6oyt] {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 30px 120px 0;
}
.lp-nav[b-99ju3l6oyt] {
    height: 54px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 999px;
    display: flex; align-items: center; justify-content: space-between;
    padding: 9px 9px 9px 21px;
    backdrop-filter: blur(10px);
}
.lp-logo[b-99ju3l6oyt] { display: flex; align-items: center; }
.lp-logo-img[b-99ju3l6oyt] { display: block; width: auto; height: 40px; }
/* Header: enlarge the lockup so the 3D cash-register icon peeks over the pill's edges. */
.lp-header .lp-logo-img[b-99ju3l6oyt] { height: 58px; }
.lp-nav-links[b-99ju3l6oyt] { display: flex; align-items: center; gap: 28px; }
.lp-nav-links a[b-99ju3l6oyt] { font-size: 14px; line-height: 20px; color: var(--text); transition: color .2s ease; }
.lp-nav-links a:hover[b-99ju3l6oyt] { color: var(--mint); }
.lp-nav-cta[b-99ju3l6oyt] { display: flex; align-items: center; gap: 10px; }

/* ============================================================
   HERO
   ============================================================ */
.lp-hero[b-99ju3l6oyt] { padding: 76px 120px 0; }
.lp-hero-inner[b-99ju3l6oyt] { position: relative; height: 760px; }

.lp-hero-glow[b-99ju3l6oyt] { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.lp-hero-glow-green[b-99ju3l6oyt] {
    left: 114px; top: -40px; width: 914px; height: 431px;
    background: radial-gradient(ellipse at center,
        rgba(168,235,200,0.18) 0%, rgba(84,118,100,0.09) 30%, rgba(0,0,0,0) 62%);
}
.lp-hero-glow-purple[b-99ju3l6oyt] {
    left: 457px; top: 477px; width: 686px; height: 345px;
    background: radial-gradient(ellipse at center,
        rgba(212,181,232,0.12) 0%, rgba(106,91,116,0.06) 30%, rgba(0,0,0,0) 62%);
}

.lp-hero-media[b-99ju3l6oyt] { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.lp-hero-bg[b-99ju3l6oyt] {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; mix-blend-mode: screen; opacity: 0.9;
}
.lp-hero-video[b-99ju3l6oyt] {
    position: absolute; left: 812px; top: 28px;
    width: 286px; height: auto; display: block;
    /* The webm carries its own device frame on a transparent background, so the
       shadow follows the phone's alpha instead of a rectangular box. */
    filter: drop-shadow(0 36px 70px rgba(0, 0, 0, 0.55))
            drop-shadow(0 6px 24px rgba(168, 235, 200, 0.12));
}

.lp-hero-text[b-99ju3l6oyt] {
    position: absolute; left: 0; top: 0; z-index: 2;
    width: 540px;
    display: flex; flex-direction: column; align-items: flex-start; gap: 20px;
}
.lp-badge[b-99ju3l6oyt] {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--card); border: 1px solid var(--border);
    border-radius: 999px; padding: 7px 15px;
}
.lp-badge span:last-child[b-99ju3l6oyt] { font-size: 12px; line-height: 16px; color: var(--muted); }
.lp-badge-dot[b-99ju3l6oyt] { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); opacity: .58; }

.lp-hero-title[b-99ju3l6oyt] {
    font-size: 80px; font-weight: 400; line-height: 84px;
    letter-spacing: -2.4px; color: var(--text);
}
.lp-hero-title em[b-99ju3l6oyt] { font-size: 90px; }

.lp-hero-lead[b-99ju3l6oyt] { font-size: 18px; line-height: 29.25px; color: var(--muted); }
.lp-hero-lead strong[b-99ju3l6oyt] { color: var(--text); font-weight: 500; }

.lp-hero-actions[b-99ju3l6oyt] { display: flex; align-items: center; gap: 16px; height: 56px; }
.lp-hero-microcopy[b-99ju3l6oyt] { font-size: 12px; line-height: 16px; color: var(--muted); white-space: nowrap; }

/* ============================================================
   PROBLEM
   ============================================================ */
.lp-problem[b-99ju3l6oyt] {
    padding: 0 250px; min-height: 687.5px;
    display: flex; align-items: center; justify-content: center;
}
.lp-problem-inner[b-99ju3l6oyt] {
    width: 100%;
    display: flex; flex-direction: column; align-items: flex-start; gap: 40px;
    padding: 6px 0;
}
.lp-problem-list[b-99ju3l6oyt] { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.lp-problem-list li[b-99ju3l6oyt] { display: flex; align-items: flex-start; gap: 12px; }
.lp-x[b-99ju3l6oyt] {
    flex: none; width: 24px; height: 24px; border-radius: 50%;
    background: rgba(225, 75, 58, 0.15);
    display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
}
.lp-x svg[b-99ju3l6oyt] { width: 14px; height: 14px; }
.lp-problem-list li span:last-child[b-99ju3l6oyt] { font-size: 18px; line-height: 28px; color: #fff; }
.lp-problem-foot[b-99ju3l6oyt] { display: flex; flex-direction: column; gap: 5px; }
.lp-problem-foot-1[b-99ju3l6oyt] { font-size: 20px; line-height: 32.5px; color: var(--text); }
.lp-problem-foot-2[b-99ju3l6oyt] { font-size: 16px; line-height: 24px; color: var(--muted); }

/* ============================================================
   SOLUTION
   ============================================================ */
.lp-solution[b-99ju3l6oyt] {
    padding: 0 180px; min-height: 472.5px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 20px; text-align: center;
}
.lp-solution-title[b-99ju3l6oyt] {
    font-size: 60px; font-weight: 600; line-height: 75px;
    letter-spacing: -1.2px; color: var(--text);
}
.lp-solution-title em[b-99ju3l6oyt] { font-size: 60px; line-height: 75px; }
.lp-solution-sub[b-99ju3l6oyt] { font-size: 20px; line-height: 28px; color: var(--text); }
.lp-solution-arrow[b-99ju3l6oyt] { width: 207px; height: 178.66px; overflow: hidden; position: relative; }
.lp-solution-arrow img[b-99ju3l6oyt] {
    position: absolute; left: -41.65%; top: -93.82%;
    width: 183.29%; height: 287.64%; max-width: none;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.lp-how[b-99ju3l6oyt] { padding: 120px 120px 0; display: flex; flex-direction: column; gap: 60px; }
.lp-how-head[b-99ju3l6oyt] { display: flex; flex-direction: column; gap: 20px; }

.lp-steps[b-99ju3l6oyt] { display: flex; flex-direction: column; gap: 80px; }
.lp-step[b-99ju3l6oyt] { position: relative; width: 100%; height: 400px; }
.lp-step-text[b-99ju3l6oyt] { position: absolute; width: 523.5px; }
.lp-step-num[b-99ju3l6oyt] {
    display: block; font-family: var(--serif); font-style: italic;
    color: var(--mint); font-size: 72px; line-height: 72px;
}
.lp-step-text h3[b-99ju3l6oyt] { font-size: 30px; font-weight: 600; line-height: 36px; color: var(--text); margin-top: 8px; }
.lp-step-text p[b-99ju3l6oyt] { font-size: 18px; line-height: 28px; color: var(--muted); margin-top: 12px; }
.lp-step-img[b-99ju3l6oyt] { position: absolute; object-fit: contain; }

.lp-steps .lp-step:nth-child(1) .lp-step-text[b-99ju3l6oyt] { left: 325px; top: 122.25px; }
.lp-step-img-1[b-99ju3l6oyt] { left: 739.21px; top: 66.23px; width: 347px; height: 326px; }
.lp-steps .lp-step:nth-child(2) .lp-step-text[b-99ju3l6oyt] { left: 460px; top: 113.75px; }
.lp-step-img-2[b-99ju3l6oyt] { left: 128px; top: 32.18px; width: 265.5px; height: 365.5px; }
.lp-steps .lp-step:nth-child(3) .lp-step-text[b-99ju3l6oyt] { left: 325px; top: 90.25px; }
.lp-step-img-3[b-99ju3l6oyt] { left: 686px; top: -38.42px; width: 265px; height: 513px; }
.lp-steps .lp-step:nth-child(4) .lp-step-text[b-99ju3l6oyt] { left: 460px; top: 121.25px; }
.lp-step-img-4[b-99ju3l6oyt] { left: 128px; top: 1.25px; width: 265px; height: 411px; }
.lp-steps .lp-step:nth-child(5) .lp-step-text[b-99ju3l6oyt] { left: 325px; top: 122.25px; }
.lp-step-img-5[b-99ju3l6oyt] { left: 702px; top: -53.75px; width: 293px; height: 483px; }

.lp-how-final[b-99ju3l6oyt] { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.lp-how-final-title[b-99ju3l6oyt] {
    font-family: var(--serif); font-style: italic; color: var(--mint);
    font-size: 54px; line-height: normal; text-align: center;
}

/* invoice + hand-drawn annotations (1200 x 815 canvas) */
.lp-invoice-anno[b-99ju3l6oyt] { position: relative; width: 1200px; height: 815px; }
.lp-invoice[b-99ju3l6oyt] {
    position: absolute; left: 364px; top: 73.25px;
    width: 522px; height: 682px; object-fit: contain;
}
.lp-anno[b-99ju3l6oyt] { position: absolute; inset: 0; pointer-events: none; }
.lp-anno-label[b-99ju3l6oyt] {
    position: absolute;
    font-family: var(--hand); font-weight: 700; color: var(--mint-2);
    font-size: 17px; line-height: 22px; white-space: nowrap;
}
.lp-anno-arrow[b-99ju3l6oyt] { position: absolute; }
.lp-anno-arrow svg[b-99ju3l6oyt] { display: block; width: 100%; height: 100%; }

.lp-anno-logo  .lp-anno-label[b-99ju3l6oyt] { left: 265px; top: 91.5px;  transform: translateX(-100%); text-align: right; }
.lp-anno-logo  .lp-anno-arrow[b-99ju3l6oyt] { left: 265px; top: 115.5px; width: 85.5px; height: 24.4px; }
.lp-anno-num   .lp-anno-label[b-99ju3l6oyt] { left: 867px; top: 76.25px; }
.lp-anno-num   .lp-anno-arrow[b-99ju3l6oyt] { left: 779px; top: 124.25px; width: 85.5px; height: 24.4px; transform: scaleX(-1); }
.lp-anno-font  .lp-anno-label[b-99ju3l6oyt] { left: 867px; top: 312.5px; }
.lp-anno-font  .lp-anno-arrow[b-99ju3l6oyt] { left: 779px; top: 360.5px; width: 85.5px; height: 24.4px; transform: scaleX(-1); }
.lp-anno-drive .lp-anno-label[b-99ju3l6oyt] { left: 265px; top: 359.25px; transform: translateX(-100%); text-align: right; }
.lp-anno-drive .lp-anno-arrow[b-99ju3l6oyt] { left: 270px; top: 334.25px; width: 85px;   height: 25px;   transform: scaleY(-1); }
.lp-anno-rate  .lp-anno-label[b-99ju3l6oyt] { left: 868px; top: 445.5px; }
.lp-anno-rate  .lp-anno-arrow[b-99ju3l6oyt] { left: 741.5px; top: 425px; width: 123px;  height: 17.85px; transform: rotate(180deg); }
.lp-anno-calc  .lp-anno-label[b-99ju3l6oyt] { left: 867px; top: 534.58px; }
.lp-anno-calc  .lp-anno-arrow[b-99ju3l6oyt] { left: 820px; top: 515.5px; width: 45.5px; height: 16.47px; transform: rotate(180deg); }
.lp-anno-qr    .lp-anno-label[b-99ju3l6oyt] { left: 265px; top: 605.5px; transform: translateX(-100%); text-align: right; }
.lp-anno-qr    .lp-anno-arrow[b-99ju3l6oyt] { left: 265px; top: 629.5px; width: 85.5px; height: 24.4px; }

/* ============================================================
   BENEFITS (bento)
   ============================================================ */
.lp-benefits[b-99ju3l6oyt] { padding: 112px 196px 0; }
.lp-benefits-inner[b-99ju3l6oyt] { display: flex; flex-direction: column; gap: 20px; }
.lp-bento[b-99ju3l6oyt] { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.lp-card-wide[b-99ju3l6oyt] { grid-column: span 4; }
.lp-card-narrow[b-99ju3l6oyt] { grid-column: span 2; }
.lp-card[b-99ju3l6oyt] { grid-column: span 2; }
.lp-card[b-99ju3l6oyt] {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 24px; padding: 28px; min-height: 206px;
}
.lp-card-icon[b-99ju3l6oyt] {
    width: 44px; height: 44px; border-radius: 16px;
    background: rgba(168, 235, 200, 0.15);
    display: flex; align-items: center; justify-content: center;
}
.lp-card-icon svg[b-99ju3l6oyt] { width: 20px; height: 20px; }
.lp-card h3[b-99ju3l6oyt] { font-size: 20px; font-weight: 600; line-height: 28px; color: var(--text); margin-top: 20px; }
.lp-card p[b-99ju3l6oyt] { font-size: 16px; line-height: 24px; color: var(--muted); margin-top: 8px; }

/* ============================================================
   WHY DIFFERENT
   ============================================================ */
.lp-why[b-99ju3l6oyt] { padding: 120px 180px 0; }
.lp-why-inner[b-99ju3l6oyt] { position: relative; min-height: 391px; }
.lp-why-text[b-99ju3l6oyt] { position: absolute; left: 0; top: 0; width: 488px; }
.lp-why-text .lp-h2[b-99ju3l6oyt] { margin-top: 16px; }
.lp-why-sub[b-99ju3l6oyt] { margin-top: 24px; font-size: 18px; line-height: 28px; color: var(--text); }
.lp-why-list[b-99ju3l6oyt] { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.lp-why-list li[b-99ju3l6oyt] { display: flex; align-items: center; gap: 12px; font-size: 16px; line-height: 24px; color: var(--text); }
.lp-check[b-99ju3l6oyt] {
    flex: none; width: 20px; height: 20px; border-radius: 50%;
    background: var(--mint); display: flex; align-items: center; justify-content: center;
}
.lp-check svg[b-99ju3l6oyt] { width: 12px; height: 12px; }
.lp-why-foot[b-99ju3l6oyt] { margin-top: 32px; font-size: 20px; line-height: 28px; color: var(--text); }
.lp-why-foot em[b-99ju3l6oyt] { font-size: 25px; }
.lp-why-media[b-99ju3l6oyt] {
    position: absolute; left: 679.76px; top: -72.39px;
    width: 399.32px; height: 557.28px;
    display: flex; align-items: center; justify-content: center;
}
.lp-why-phone[b-99ju3l6oyt] {
    width: 272px; height: 501.9px; object-fit: cover;
    transform: rotate(15.93deg); border-radius: 8px;
    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.65));
}

/* ============================================================
   FOUNDERS
   ============================================================ */
.lp-founders[b-99ju3l6oyt] { padding: 120px 180px 0; }
.lp-founders-card[b-99ju3l6oyt] {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 24px; padding: 60px;
    display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.lp-founders-pill[b-99ju3l6oyt] {
    display: inline-flex; align-items: center; gap: 8px;
    height: 36px; padding: 0 16px; border-radius: 999px;
    background: rgba(168, 235, 200, 0.15);
    color: var(--mint); font-size: 14px; line-height: 20px;
}
.lp-founders-pill svg[b-99ju3l6oyt] { width: 16px; height: 16px; }
.lp-founders-title[b-99ju3l6oyt] {
    text-align: center; font-size: 48px; font-weight: 600;
    line-height: 60px; letter-spacing: -0.96px; color: var(--text);
}
.lp-founders-title em[b-99ju3l6oyt] { font-size: 54px; }
.lp-stats[b-99ju3l6oyt] { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; width: 100%; }
.lp-stat[b-99ju3l6oyt] {
    background: rgba(255, 255, 255, 0.04); border-radius: 16px;
    padding: 24px; min-height: 136px;
    display: flex; flex-direction: column;
}
.lp-stat-num[b-99ju3l6oyt] { font-family: var(--serif); font-style: normal; color: var(--mint); font-size: 36px; line-height: 40px; }
.lp-stat-label[b-99ju3l6oyt] { font-size: 16px; font-weight: 600; line-height: 24px; color: var(--text); margin-top: 3px; }
.lp-stat-sub[b-99ju3l6oyt] { font-size: 14px; line-height: 20px; color: var(--muted); margin-top: 1px; }

/* ============================================================
   COMPLIANCE / TRUST
   ============================================================ */
.lp-trust[b-99ju3l6oyt] { padding: 60px 180px 0; }
.lp-trust-inner[b-99ju3l6oyt] { display: flex; flex-direction: column; gap: 20px; }
.lp-trust-grid[b-99ju3l6oyt] { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.lp-trust-item[b-99ju3l6oyt] {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 16px; min-height: 74px;
    display: flex; align-items: center; gap: 12px; padding: 21px;
}
.lp-trust-check[b-99ju3l6oyt] {
    flex: none; width: 32px; height: 32px; border-radius: 50%;
    background: rgba(168, 235, 200, 0.15);
    display: flex; align-items: center; justify-content: center;
}
.lp-trust-check svg[b-99ju3l6oyt] { width: 16px; height: 16px; }
.lp-trust-item span:last-child[b-99ju3l6oyt] { font-size: 16px; line-height: 24px; color: var(--text); }

/* Plain-language disclosure of the Google data the app requests (OAuth review requirement). */
.lp-data-use[b-99ju3l6oyt] {
    margin-top: 20px;
    background: var(--card); border: 1px solid var(--border);
    border-radius: 16px; padding: 28px;
}
.lp-data-use-title[b-99ju3l6oyt] { font-size: 20px; font-weight: 600; line-height: 28px; color: var(--text); }
.lp-data-use p[b-99ju3l6oyt] { font-size: 16px; line-height: 24px; color: var(--muted); margin-top: 12px; }
.lp-data-use p strong[b-99ju3l6oyt], .lp-data-use li strong[b-99ju3l6oyt] { color: var(--text); font-weight: 600; }
.lp-data-use-list[b-99ju3l6oyt] { margin-top: 12px; display: flex; flex-direction: column; gap: 12px; }
.lp-data-use-list li[b-99ju3l6oyt] {
    font-size: 16px; line-height: 24px; color: var(--muted);
    padding-left: 16px; border-left: 2px solid rgba(168, 235, 200, 0.35);
}
.lp-data-use a[b-99ju3l6oyt] { color: var(--mint); text-decoration: underline; }

/* ============================================================
   VISION
   ============================================================ */
.lp-vision[b-99ju3l6oyt] { padding: 120px 180px 60px; }
.lp-vision-inner[b-99ju3l6oyt] { display: flex; flex-direction: column; align-items: center; gap: 30px; text-align: center; }
.lp-vision-title[b-99ju3l6oyt] { font-size: 48px; font-weight: 600; line-height: 60px; letter-spacing: -0.96px; color: var(--text); }
.lp-vision-title em[b-99ju3l6oyt] { font-size: 54px; }
.lp-vision-media[b-99ju3l6oyt] { display: flex; align-items: center; justify-content: center; }
/* The illustration is a transparent PNG of a meditating figure — show it floating
   with a soft shadow that follows its shape, not boxed inside a rounded card. */
.lp-vision-phone-wrap[b-99ju3l6oyt] { position: relative; line-height: 0; }
.lp-vision-phone-wrap img[b-99ju3l6oyt] {
    width: auto; height: 360px; max-width: 100%;
    filter: drop-shadow(0 26px 28px rgba(0, 0, 0, 0.45));
}
.lp-vision-cap[b-99ju3l6oyt] { font-size: 16px; line-height: 24px; color: var(--muted); }
.lp-vision-tags[b-99ju3l6oyt] { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.lp-tag[b-99ju3l6oyt] {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 50px; padding: 9px 15px;
    font-size: 14px; line-height: 20px; color: var(--text);
}
.lp-vision-goal[b-99ju3l6oyt] { font-size: 22px; line-height: 28px; color: var(--text); }
.lp-vision-goal em[b-99ju3l6oyt] { font-size: 25px; }

/* ============================================================
   FAQ
   ============================================================ */
.lp-faq[b-99ju3l6oyt] { padding: 120px 240px 0; }
.lp-faq-inner[b-99ju3l6oyt] { display: flex; flex-direction: column; }
.lp-faq-inner .lp-h2[b-99ju3l6oyt] { margin-top: 16px; }
.lp-faq-list[b-99ju3l6oyt] { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.lp-faq-item[b-99ju3l6oyt] {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 16px; overflow: hidden;
    transition: background-color .2s ease;
}
.lp-faq-item:hover[b-99ju3l6oyt] { background: rgba(45, 49, 60, 0.9); }
.lp-faq-q[b-99ju3l6oyt] {
    width: 100%; min-height: 66px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 21px 20px; cursor: pointer;
    background: none; border: 0; font-family: inherit; text-align: left;
}
.lp-faq-q span[b-99ju3l6oyt] { font-size: 16px; font-weight: 500; line-height: 24px; color: var(--text); }
.lp-faq-chevron[b-99ju3l6oyt] { flex: none; width: 16px; height: 16px; display: flex; transition: transform .25s ease; }
.lp-faq-chevron svg[b-99ju3l6oyt] { width: 16px; height: 16px; }
.lp-faq-item.is-open .lp-faq-q[b-99ju3l6oyt] { padding-bottom: 8px; }
.lp-faq-item.is-open .lp-faq-chevron[b-99ju3l6oyt] { transform: rotate(180deg); }
/* collapsible answer — animated via the 0fr→1fr grid-rows technique. The grid
   item (the clip) must carry no padding of its own, or its padding keeps the
   collapsed track from reaching 0; the padding lives on the inner text. */
.lp-faq-a[b-99ju3l6oyt] { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.lp-faq-item.is-open .lp-faq-a[b-99ju3l6oyt] { grid-template-rows: 1fr; }
.lp-faq-a-clip[b-99ju3l6oyt] { overflow: hidden; min-height: 0; }
.lp-faq-a-text[b-99ju3l6oyt] {
    margin: 0; padding: 0 20px 20px;
    font-size: 15px; line-height: 24px; color: var(--muted);
}

/* ============================================================
   FINAL CTA + NEWSLETTER
   ============================================================ */
.lp-final[b-99ju3l6oyt] { padding: 120px 240px; display: flex; flex-direction: column; gap: 48px; }
.lp-final-card[b-99ju3l6oyt] {
    background: linear-gradient(160.55deg, #a8ebc8 0%, #8cd9b3 100%);
    border-radius: 24px; padding: 64px;
    display: flex; flex-direction: column; gap: 40px;
}
.lp-final-title[b-99ju3l6oyt] { text-align: center; font-size: 60px; font-weight: 600; line-height: 75px; letter-spacing: -1.2px; color: var(--navy); }
.lp-final-title em[b-99ju3l6oyt] { color: var(--navy); font-size: 70px; }
.lp-final-cta[b-99ju3l6oyt] { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.lp-final-btn[b-99ju3l6oyt] {
    display: flex; align-items: center; justify-content: center; width: 100%;
    background: var(--navy); color: var(--text);
    border-radius: 999px; padding: 15px 30px;
    font-size: 18px; font-weight: 600; line-height: 28px;
}
.lp-final-btn:hover[b-99ju3l6oyt] { background: #000; transform: translateY(-1px); }
.lp-final-micro[b-99ju3l6oyt] { font-size: 14px; line-height: 20px; color: #383838; text-align: center; }

.lp-news[b-99ju3l6oyt] {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 24px; padding: 44px 0;
    display: flex; justify-content: center;
}
.lp-news-inner[b-99ju3l6oyt] { width: 448px; display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.lp-news-title[b-99ju3l6oyt] { font-size: 30px; font-weight: 600; line-height: 36px; color: var(--text); }
.lp-news-sub[b-99ju3l6oyt] { font-size: 16px; line-height: 24px; color: var(--muted); }
.lp-news-form[b-99ju3l6oyt] { display: flex; gap: 3px; height: 56px; width: 100%; }
.lp-news-input[b-99ju3l6oyt] {
    flex: 1; min-width: 0;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px 3px 3px 999px;
    padding: 12px 20px; font-size: 14px; color: var(--text); outline: none;
}
.lp-news-input[b-99ju3l6oyt]::placeholder { color: rgba(255, 255, 255, 0.5); }
.lp-news-input:focus[b-99ju3l6oyt] { border-color: rgba(168, 235, 200, 0.5); }
.lp-news-btn[b-99ju3l6oyt] {
    width: 120px; flex: none; border: none; cursor: pointer;
    background: var(--mint); color: var(--navy);
    border-radius: 3px 999px 999px 3px;
    font-size: 14px; font-weight: 600; line-height: 20px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.lp-footer[b-99ju3l6oyt] { border-top: 1px solid var(--border); margin-top: 0; }
.lp-footer-inner[b-99ju3l6oyt] {
    height: 121px; padding: 0 120px;
    display: flex; align-items: center; justify-content: space-between;
}
.lp-footer-meta[b-99ju3l6oyt] {
    display: flex; align-items: center; gap: 8px;
    background: var(--card); border: 1px solid var(--border);
    border-radius: 999px; padding: 7px 15px;
    font-size: 12px; line-height: 16px; color: var(--muted);
}
.lp-footer-meta a[b-99ju3l6oyt] { color: var(--muted); text-decoration: underline; transition: color .2s ease; }
.lp-footer-meta a:hover[b-99ju3l6oyt] { color: var(--mint); }
.lp-footer-dot[b-99ju3l6oyt] { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); opacity: .58; }

/* ============================================================
   RESPONSIVE
   The layout above is a pixel-faithful 1440px canvas (preserved on >=1440px
   screens). Below that we reflow the absolutely-positioned sections into
   normal flow, then scale typography and grids at finer breakpoints.
   ============================================================ */
@media (max-width: 1439px) {
    .lp-canvas[b-99ju3l6oyt] { width: 100%; }

    /* fluid section gutters */
    .lp-header[b-99ju3l6oyt]   { padding: 20px clamp(16px, 4vw, 60px) 0; }
    .lp-hero[b-99ju3l6oyt]     { padding: 48px clamp(20px, 5vw, 80px) 0; }
    .lp-problem[b-99ju3l6oyt]  { padding: 64px clamp(20px, 6vw, 160px); min-height: 0; }
    .lp-solution[b-99ju3l6oyt] { padding: 56px clamp(20px, 6vw, 120px); min-height: 0; }
    .lp-how[b-99ju3l6oyt]      { padding: 96px clamp(20px, 5vw, 80px) 0; }
    .lp-benefits[b-99ju3l6oyt] { padding: 96px clamp(20px, 5vw, 80px) 0; }
    .lp-why[b-99ju3l6oyt]      { padding: 96px clamp(20px, 5vw, 80px) 0; }
    .lp-founders[b-99ju3l6oyt] { padding: 96px clamp(20px, 5vw, 80px) 0; }
    .lp-trust[b-99ju3l6oyt]    { padding: 56px clamp(20px, 5vw, 80px) 0; }
    .lp-vision[b-99ju3l6oyt]   { padding: 96px clamp(20px, 5vw, 80px) 56px; }
    .lp-faq[b-99ju3l6oyt]      { padding: 96px clamp(20px, 5vw, 120px) 0; }
    .lp-final[b-99ju3l6oyt]    { padding: 96px clamp(20px, 5vw, 120px); }
    .lp-footer-inner[b-99ju3l6oyt] { padding: 0 clamp(20px, 5vw, 80px); }

    /* HERO → stacked (headline, then the device video) */
    .lp-hero-inner[b-99ju3l6oyt] { position: relative; height: auto; display: flex; flex-direction: column; align-items: center; gap: 44px; }
    .lp-hero-bg[b-99ju3l6oyt] { display: none; }
    .lp-hero-glow-purple[b-99ju3l6oyt] { display: none; }
    .lp-hero-glow-green[b-99ju3l6oyt] { left: 0; right: 0; top: -20px; margin: 0 auto; width: min(914px, 92vw); }
    .lp-hero-media[b-99ju3l6oyt] { position: relative; inset: auto; width: 100%; display: flex; justify-content: center; }
    .lp-hero-video[b-99ju3l6oyt] { position: relative; left: auto; top: auto; width: min(280px, 64vw); }
    .lp-hero-text[b-99ju3l6oyt] { position: static; width: min(560px, 100%); order: -1; align-items: center; text-align: center; }
    .lp-hero-actions[b-99ju3l6oyt] { flex-direction: column; height: auto; }

    /* HOW IT WORKS → stacked step cards */
    .lp-steps[b-99ju3l6oyt] { gap: 48px; }
    .lp-step[b-99ju3l6oyt] { height: auto; display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
    .lp-step--right[b-99ju3l6oyt] { flex-direction: column-reverse; }
    .lp-step-text[b-99ju3l6oyt] { position: static; width: min(523px, 100%); }
    .lp-step-img[b-99ju3l6oyt] { position: static; left: auto !important; top: auto !important; width: min(280px, 70vw) !important; height: auto !important; }

    /* the annotated invoice can't keep its hand-placed callouts once it reflows */
    .lp-invoice-anno[b-99ju3l6oyt] { width: 100%; max-width: 420px; height: auto; }
    .lp-invoice[b-99ju3l6oyt] { position: static; width: 100%; height: auto; }
    .lp-anno[b-99ju3l6oyt] { display: none; }

    /* WHY → stacked */
    .lp-why-inner[b-99ju3l6oyt] { min-height: 0; display: flex; flex-direction: column; align-items: center; gap: 44px; }
    .lp-why-text[b-99ju3l6oyt] { position: static; width: min(488px, 100%); text-align: center; }
    .lp-why-list[b-99ju3l6oyt] { width: max-content; max-width: 100%; margin: 24px auto 0; }
    .lp-why-media[b-99ju3l6oyt] { position: static; left: auto; top: auto; width: auto; height: auto; }
    .lp-why-phone[b-99ju3l6oyt] { width: min(260px, 60vw); height: auto; }

    /* BENTO → 2 columns */
    .lp-bento[b-99ju3l6oyt] { grid-template-columns: repeat(2, 1fr); }
    .lp-card-wide[b-99ju3l6oyt], .lp-card-narrow[b-99ju3l6oyt], .lp-card[b-99ju3l6oyt] { grid-column: auto; }
}

@media (max-width: 900px) {
    .lp-nav-links[b-99ju3l6oyt] { display: none; }
    .lp-h2[b-99ju3l6oyt] { font-size: 36px; line-height: 44px; }
    .lp-h2 em[b-99ju3l6oyt] { font-size: 40px; line-height: 44px; }
    .lp-hero-title[b-99ju3l6oyt] { font-size: 56px; line-height: 60px; letter-spacing: -1.6px; }
    .lp-hero-title em[b-99ju3l6oyt] { font-size: 64px; }
    .lp-solution-title[b-99ju3l6oyt], .lp-final-title[b-99ju3l6oyt] { font-size: 44px; line-height: 54px; }
    .lp-solution-title em[b-99ju3l6oyt], .lp-final-title em[b-99ju3l6oyt] { font-size: 46px; line-height: 54px; }
    .lp-founders-title[b-99ju3l6oyt], .lp-vision-title[b-99ju3l6oyt] { font-size: 36px; line-height: 44px; }
    .lp-founders-title em[b-99ju3l6oyt], .lp-vision-title em[b-99ju3l6oyt] { font-size: 40px; }
    .lp-founders-card[b-99ju3l6oyt] { padding: 40px 28px; }
    .lp-stats[b-99ju3l6oyt] { grid-template-columns: 1fr; }
    .lp-trust-grid[b-99ju3l6oyt] { grid-template-columns: 1fr; }
    .lp-footer-inner[b-99ju3l6oyt] { height: auto; flex-direction: column; gap: 20px; padding-top: 28px; padding-bottom: 28px; }
}

@media (max-width: 600px) {
    .lp-bento[b-99ju3l6oyt] { grid-template-columns: 1fr; }
    .lp-hero-title[b-99ju3l6oyt] { font-size: 42px; line-height: 46px; letter-spacing: -1.2px; }
    .lp-hero-title em[b-99ju3l6oyt] { font-size: 48px; }
    .lp-hero-lead[b-99ju3l6oyt] { font-size: 16px; line-height: 26px; }
    .lp-h2[b-99ju3l6oyt] { font-size: 30px; line-height: 38px; }
    .lp-h2 em[b-99ju3l6oyt] { font-size: 32px; line-height: 38px; }
    .lp-solution-title[b-99ju3l6oyt], .lp-final-title[b-99ju3l6oyt] { font-size: 34px; line-height: 42px; }
    .lp-solution-title em[b-99ju3l6oyt], .lp-final-title em[b-99ju3l6oyt] { font-size: 36px; line-height: 42px; }
    .lp-how-final-title[b-99ju3l6oyt] { font-size: 34px; }
    .lp-problem-list li span:last-child[b-99ju3l6oyt] { font-size: 16px; line-height: 24px; }
    .lp-final-card[b-99ju3l6oyt] { padding: 40px 22px; }
    .lp-btn-primary[b-99ju3l6oyt], .lp-final-btn[b-99ju3l6oyt] { white-space: normal; max-width: 100%; }
    .lp-hero-microcopy[b-99ju3l6oyt] { white-space: normal; text-align: center; }
    .lp-news-form[b-99ju3l6oyt] { flex-direction: column; height: auto; gap: 10px; }
    .lp-news-input[b-99ju3l6oyt] { border-radius: 999px; }
    .lp-news-btn[b-99ju3l6oyt] { width: 100%; border-radius: 999px; padding: 14px; }
    .lp-footer-meta[b-99ju3l6oyt] { flex-wrap: wrap; justify-content: center; }

    /* Keep BOTH nav CTAs ("Vpiši se" + "Izdaj račun") on mobile: tighten the pills
       and let the logo take whatever width is left over instead of dropping login. */
    .lp-nav[b-99ju3l6oyt] { padding: 6px 6px 6px 14px; gap: 10px; }
    .lp-nav-cta[b-99ju3l6oyt] { flex: none; gap: 8px; }
    .lp-nav-cta .lp-btn-outline[b-99ju3l6oyt],
    .lp-nav-cta .lp-btn-pill[b-99ju3l6oyt] { padding: 7px 12px; font-size: 13px; }
    /* object-fit lets the lockup scale down inside the space that's left, so a very
       narrow viewport shrinks the logo rather than overflowing the nav pill. */
    .lp-logo[b-99ju3l6oyt] { flex: 0 1 auto; min-width: 0; }
    .lp-header .lp-logo-img[b-99ju3l6oyt] { height: 44px; max-width: 100%; object-fit: contain; }
}

@media (max-width: 420px) {
    .lp-nav[b-99ju3l6oyt] { padding: 6px 6px 6px 12px; gap: 8px; }
    .lp-nav-cta[b-99ju3l6oyt] { gap: 6px; }
    .lp-nav-cta .lp-btn-outline[b-99ju3l6oyt],
    .lp-nav-cta .lp-btn-pill[b-99ju3l6oyt] { padding: 7px 10px; font-size: 12px; }
    .lp-header .lp-logo-img[b-99ju3l6oyt] { height: 38px; }
    .lp-hero-title[b-99ju3l6oyt] { font-size: 36px; line-height: 40px; }
    .lp-hero-title em[b-99ju3l6oyt] { font-size: 40px; }
    .lp-solution-title[b-99ju3l6oyt], .lp-final-title[b-99ju3l6oyt] { font-size: 28px; line-height: 36px; }
    .lp-solution-title em[b-99ju3l6oyt], .lp-final-title em[b-99ju3l6oyt] { font-size: 30px; line-height: 36px; }
}
/* /Pages/Login.razor.rz.scp.css */
.login-screen[b-ww1ry4yplq] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.login-content[b-ww1ry4yplq] {
    width: 100%;
}

.login-header[b-ww1ry4yplq] {
    text-align: center;
    margin-bottom: 40px;
}

.login-title[b-ww1ry4yplq] {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #abe2c2;
    margin-bottom: 8px;
}

.login-subtitle[b-ww1ry4yplq] {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(239, 239, 239, 0.5);
}

.login-form[b-ww1ry4yplq] {
    margin-bottom: 30px;
}

.login-forgot[b-ww1ry4yplq] {
    display: flex;
    justify-content: flex-end;
    margin-top: 4px;
}

.login-forgot-link[b-ww1ry4yplq] {
    background: none;
    border: none;
    color: #abe2c2;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 4px 0;
}

.login-forgot-link:hover[b-ww1ry4yplq] {
    text-decoration: underline;
}

.login-error[b-ww1ry4yplq] {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
}

.login-info[b-ww1ry4yplq] {
    background: rgba(171, 226, 194, 0.12);
    border: 1px solid rgba(171, 226, 194, 0.35);
    color: #abe2c2;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
}

.login-cta[b-ww1ry4yplq] {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
/* /Pages/Logout.razor.rz.scp.css */
.logout-screen[b-3g43qnu79l] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.logout-content[b-3g43qnu79l] {
    text-align: center;
    width: 100%;
}

.logout-icon[b-3g43qnu79l] {
    font-size: 80px;
    color: #abe2c2;
    margin-bottom: 30px;
}

.logout-title[b-3g43qnu79l] {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #efefef;
    margin-bottom: 16px;
    line-height: 1.3;
}

.logout-message[b-3g43qnu79l] {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(239, 239, 239, 0.5);
    line-height: 1.5;
}

.logout-actions[b-3g43qnu79l] {
    width: 100%;
    margin-top: 40px;
}
/* /Pages/Pravno.razor.rz.scp.css */
/* ============================================================
   Normiračun legal page — Pogoji uporabe, zasebnost, piškotki, GDPR.
   Long-form readable typography on the brand navy/mint theme.
   ============================================================ */

.lg[b-008khulfmw] {
    --navy: #1b1d24;
    --navy-2: #23262f;
    --mint: #a8ebc8;
    --mint-strong: #8cd9b3;
    --text: #fafafb;
    --muted: #a8acb5;
    --card: rgba(35, 38, 47, 0.85);
    --border: rgba(255, 255, 255, 0.08);
    --sans: 'Inter', sans-serif;
    --serif: 'Instrument Serif', Georgia, serif;

    width: 100%;
    min-height: 100vh;
    background: var(--navy);
    color: var(--text);
    font-family: var(--sans);
    overflow-x: clip;
}

.lg *[b-008khulfmw], .lg *[b-008khulfmw]::before, .lg *[b-008khulfmw]::after { box-sizing: border-box; }
.lg h1[b-008khulfmw], .lg h2[b-008khulfmw], .lg h3[b-008khulfmw], .lg h4[b-008khulfmw], .lg p[b-008khulfmw], .lg ul[b-008khulfmw] { margin: 0; }
.lg a[b-008khulfmw] { color: inherit; text-decoration: none; }
.lg ul[b-008khulfmw] { list-style: none; padding: 0; }
.lg img[b-008khulfmw] { display: block; }

.lg-canvas[b-008khulfmw] {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px 96px;
    position: relative;
}

/* ---------- header ---------- */
.lg-header[b-008khulfmw] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 28px 0;
    position: sticky;
    top: 0;
    background: rgba(27, 29, 36, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10;
    border-bottom: 1px solid var(--border);
}
.lg-logo[b-008khulfmw] { display: flex; align-items: center; }
.lg-logo-img[b-008khulfmw] { display: block; width: auto; height: 42px; }

.lg-back[b-008khulfmw] {
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    transition: color .2s ease;
    white-space: nowrap;
}
.lg-back:hover[b-008khulfmw] { color: var(--mint); }

/* ---------- intro ---------- */
.lg-main[b-008khulfmw] { padding-top: 48px; }

.lg-eyebrow[b-008khulfmw] {
    display: block;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 12px;
}
.lg-title[b-008khulfmw] {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.8px;
}
.lg-updated[b-008khulfmw] {
    margin-top: 12px;
    color: var(--muted);
    font-size: 14px;
}

/* ---------- table of contents ---------- */
.lg-toc[b-008khulfmw] {
    margin: 36px 0 8px;
    padding: 20px 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lg-toc a[b-008khulfmw] {
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    transition: color .2s ease;
}
.lg-toc a:hover[b-008khulfmw] { color: var(--mint); }

/* ---------- sections ---------- */
.lg-section[b-008khulfmw] {
    padding-top: 56px;
    /* offset so anchored scroll clears the sticky header */
    scroll-margin-top: 96px;
}
.lg-h2[b-008khulfmw] {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.4px;
    padding-bottom: 16px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.lg-h3[b-008khulfmw] {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--text);
}
.lg-h4[b-008khulfmw] {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 22px;
    margin-bottom: 8px;
    color: var(--mint);
}

.lg p[b-008khulfmw] {
    font-size: 15.5px;
    line-height: 1.7;
    color: #d5d7dc;
    margin-bottom: 12px;
}

.lg-list[b-008khulfmw] {
    margin: 0 0 14px;
    padding-left: 4px;
}
.lg-list li[b-008khulfmw] {
    position: relative;
    padding-left: 22px;
    font-size: 15.5px;
    line-height: 1.7;
    color: #d5d7dc;
    margin-bottom: 6px;
}
.lg-list li[b-008khulfmw]::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mint);
}
.lg-list-nested[b-008khulfmw] {
    margin-top: 8px;
    margin-bottom: 0;
}
.lg-list-nested li[b-008khulfmw]::before {
    background: transparent;
    border: 1.5px solid var(--mint-strong);
    top: 9px;
}

.lg-inline-link[b-008khulfmw] {
    color: var(--mint);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.lg-inline-link:hover[b-008khulfmw] { color: var(--mint-strong); }

/* ---------- data table ---------- */
.lg-table-wrap[b-008khulfmw] {
    margin: 0 0 14px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    /* keep the table readable on narrow screens instead of squeezing columns */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.lg-table[b-008khulfmw] {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
}
.lg-table th[b-008khulfmw] {
    text-align: left;
    padding: 12px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--mint);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}
.lg-table td[b-008khulfmw] {
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.5;
    color: #d5d7dc;
    vertical-align: top;
    border-bottom: 1px solid var(--border);
}
.lg-table tbody tr:last-child td[b-008khulfmw] { border-bottom: none; }
.lg-table .lg-placeholder[b-008khulfmw] { font-size: 13px; }

/* company-specific details still to be filled in before go-live */
.lg-placeholder[b-008khulfmw] {
    display: inline-block;
    padding: 1px 8px;
    border-radius: 6px;
    background: rgba(168, 235, 200, 0.12);
    border: 1px dashed rgba(168, 235, 200, 0.5);
    color: var(--mint);
    font-size: 14px;
    font-weight: 600;
}

.lg-foot-cta[b-008khulfmw] {
    margin-top: 64px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

/* ---------- responsive ---------- */
@media (max-width: 600px) {
    .lg-title[b-008khulfmw] { font-size: 32px; }
    .lg-h2[b-008khulfmw] { font-size: 24px; }
    .lg-header[b-008khulfmw] { padding: 18px 0; }
    .lg-back[b-008khulfmw] { font-size: 13px; }
}
/* /Pages/Register.razor.rz.scp.css */
.register-screen[b-atleqo4gja] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.register-content[b-atleqo4gja] {
    width: 100%;
}

.register-header[b-atleqo4gja] {
    text-align: center;
    margin-bottom: 40px;
}

.register-title[b-atleqo4gja] {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #abe2c2;
    margin-bottom: 8px;
}

.register-subtitle[b-atleqo4gja] {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(239, 239, 239, 0.5);
}

.register-form[b-atleqo4gja] {
    margin-bottom: 30px;
}

.register-error[b-atleqo4gja] {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
}

.register-cta[b-atleqo4gja] {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
