/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-jxvikod8ia] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-jxvikod8ia] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* Fixed banner shown across the whole app while running against ePay test.
   Purple bar, white centred text; the page content is offset below it. */
.staging-banner[b-jxvikod8ia] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 34px;
    line-height: 34px;
    background-color: #6f42c1;
    color: #ffffff;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.02em;
    z-index: 1080;
}

.staging-offset[b-jxvikod8ia] {
    padding-top: 34px;
}
/* /Components/Pages/Builder.razor.rz.scp.css */
/* Hero */
.hero-section[b-a5b0iiwhj7] {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.hero-image[b-a5b0iiwhj7] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-overlay[b-a5b0iiwhj7] {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 100%);
    display: flex;
    align-items: center;
}

.hero-title[b-a5b0iiwhj7] {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    margin-bottom: 0.5rem;
}

.hero-subtitle[b-a5b0iiwhj7] {
    color: rgba(255,255,255,0.88);
    font-size: 1.15rem;
    margin: 0;
}

/* Builder step cards */
.step-header[b-a5b0iiwhj7] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.step-number[b-a5b0iiwhj7] {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #0d6efd;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    margin-top: 2px;
}

.step-title[b-a5b0iiwhj7] {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Product cards (station & accessory & subscription) */
.product-card[b-a5b0iiwhj7] {
    cursor: pointer;
    border: 2px solid #e9ecef !important;
    border-radius: 10px !important;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease;
    position: relative;
}

.product-card:hover:not(.required)[b-a5b0iiwhj7] {
    border-color: #86b7fe !important;
    box-shadow: 0 4px 16px rgba(13,110,253,0.12) !important;
    /*transform: translateY(-1px);*/
}

    .product-card.selected[b-a5b0iiwhj7] {
        border-color: #0d6efd !important;
        box-shadow: 0 0 0 2px rgba(13,110,253,0.35),
            0 4px 20px rgba(13,110,253,0.18) !important;
    }

.product-card.required[b-a5b0iiwhj7] {
    cursor: default;
}

/* Checkmark shown only when selected */
.selection-indicator[b-a5b0iiwhj7] {
    display: none;
    align-items: center;
    gap: 5px;
    color: #0d6efd;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.product-card.selected .selection-indicator[b-a5b0iiwhj7] {
    display: flex;
}

/* Station images */
.product-image[b-a5b0iiwhj7] {
    height: 200px;
    object-fit: contain;
    background: #f8f9fa;
    padding: 1rem;
}

.product-image-sm[b-a5b0iiwhj7] {
    height: 140px;
    object-fit: contain;
    background: #f8f9fa;
    padding: 0.75rem;
}

/* Spec badges */
.specs-row[b-a5b0iiwhj7] {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.spec-badge[b-a5b0iiwhj7] {
    background: #e9ecef;
    color: #495057;
    font-size: 0.76rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
}

/* Feature chips */
.feature-row[b-a5b0iiwhj7] {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 6px;
}

.feature-chip[b-a5b0iiwhj7] {
    background: #e8f0fe;
    color: #1a56db;
    font-size: 0.72rem;
    padding: 2px 7px;
    border-radius: 12px;
    font-weight: 500;
}

/* Prices */
.price-tag[b-a5b0iiwhj7] {
    font-weight: 700;
    font-size: 1rem;
    color: #212529;
}

/* Stock badges */
.stock-badge[b-a5b0iiwhj7] {
    font-size: 0.78rem;
    font-weight: 500;
}

.in-stock[b-a5b0iiwhj7] {
    color: #198754;
}

.out-of-stock[b-a5b0iiwhj7] {
    color: #dc3545;
}

/* Installation cards */
.installation-card[b-a5b0iiwhj7] {
    cursor: pointer;
    border: 2px solid #e9ecef !important;
    border-radius: 10px !important;
    transition: border-color 0.18s ease;
}

.installation-card:hover:not(.required)[b-a5b0iiwhj7] {
    border-color: #86b7fe !important;
}

.installation-card.selected[b-a5b0iiwhj7] {
    border-color: #0d6efd !important;
    background: #fafcff;
}

.installation-card.required[b-a5b0iiwhj7] {
    cursor: default;
}

/* Checkbox indicator (used in installation & fee rows) */
.selection-checkbox[b-a5b0iiwhj7] {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid #ced4da;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, border-color 0.15s;
}

.selection-checkbox.checked[b-a5b0iiwhj7] {
    background: #0d6efd;
    border-color: #0d6efd;
    color: white;
}

.qty-input[b-a5b0iiwhj7] {
    width: 80px;
}

/* Inline thumbnail (installation & fee rows) */
.item-thumb[b-a5b0iiwhj7] {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 6px;
    background: #f8f9fa;
    flex-shrink: 0;
}

/* Fee list */
.fees-list[b-a5b0iiwhj7] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fee-item[b-a5b0iiwhj7] {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease;
}

.fee-item:hover[b-a5b0iiwhj7] {
    border-color: #86b7fe;
}

.fee-item.selected[b-a5b0iiwhj7] {
    border-color: #0d6efd;
    background: #fafcff;
}

.proceed-btn[b-a5b0iiwhj7] {
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
}

/* Color swatches */
.color-swatch[b-a5b0iiwhj7] {
    width: 48px;
    height: 48px;
    padding: 2px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    background: #f8f9fa;
    cursor: pointer;
    transition: border-color 0.15s, transform 0.1s;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.color-swatch img[b-a5b0iiwhj7] {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.color-swatch:hover[b-a5b0iiwhj7] {
    border-color: #86b7fe;
    transform: scale(1.08);
}

.color-swatch.active[b-a5b0iiwhj7] {
    border-color: #0d6efd;
    border-width: 2.5px;
    transform: scale(1.08);
}

/* Accessory sub-options */
.option-btn[b-a5b0iiwhj7] {
    padding: 0.25rem 0.65rem;
    font-size: 0.8rem;
    border: 1.5px solid #dee2e6;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    white-space: nowrap;
}

.option-btn:hover[b-a5b0iiwhj7] {
    border-color: #86b7fe;
    background: #f0f6ff;
}

.option-btn.active[b-a5b0iiwhj7] {
    border-color: #0d6efd;
    background: #e7f0ff;
    font-weight: 600;
    color: #0d6efd;
}

/* Info icon */
.info-icon-btn[b-a5b0iiwhj7] {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #adb5bd;
    flex-shrink: 0;
    line-height: 1;
    transition: color 0.15s;
}

.info-icon-btn:hover[b-a5b0iiwhj7] {
    color: #0d6efd;
}

/* Info modal */
.modal-backdrop-custom[b-a5b0iiwhj7] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1040;
}

.modal-custom[b-a5b0iiwhj7] {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    pointer-events: none;
}

.modal-custom-dialog[b-a5b0iiwhj7] {
    background: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 680px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    pointer-events: all;
}

.modal-custom-header[b-a5b0iiwhj7] {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem 0;
    gap: 0.5rem;
    position: relative;
}

.modal-custom-header[b-a5b0iiwhj7]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid #dee2e6;
}

.modal-tabs[b-a5b0iiwhj7] {
    flex: 1;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
}

.modal-tabs[b-a5b0iiwhj7]::-webkit-scrollbar {
    display: none;
}

.modal-external-link[b-a5b0iiwhj7] {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #adb5bd;
    line-height: 1;
    transition: color 0.15s;
}

.modal-external-link:hover[b-a5b0iiwhj7] {
    color: #0d6efd;
}

.modal-custom-body[b-a5b0iiwhj7] {
    padding: 1.25rem;
    overflow-y: auto;
    flex: 1;
}
/* /Components/Pages/Internal/Auth.razor.rz.scp.css */
.login-page[b-d2goz3fywq] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #f4f6f8;
}

.login-card[b-d2goz3fywq] {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border: 1px solid #d9dee7;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

    .login-card h1[b-d2goz3fywq] {
        margin: 0 0 8px;
        font-size: 28px;
    }

    .login-card p[b-d2goz3fywq] {
        margin: 0 0 28px;
        color: #697586;
    }

.field[b-d2goz3fywq] {
    margin-bottom: 18px;
}

    .field label[b-d2goz3fywq] {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        font-size: 14px;
    }

.login-input[b-d2goz3fywq] {
    width: 100%;
    height: 44px;
    border: 1px solid #d9dee7;
    border-radius: 10px;
    padding: 0 12px;
    font-size: 15px;
    outline: none;
}

    .login-input:focus[b-d2goz3fywq] {
        border-color: #2563eb;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    }

.login-actions[b-d2goz3fywq] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    gap: 12px;
}

.remember[b-d2goz3fywq] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #697586;
}

.remember-checkbox[b-d2goz3fywq] {
    width: auto;
    height: auto;
}

.login-button[b-d2goz3fywq] {
    border: 0;
    border-radius: 10px;
    background: #2563eb;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 18px;
    cursor: pointer;
}

    .login-button:hover[b-d2goz3fywq] {
        background: #1d4ed8;
    }

.forgot-link[b-d2goz3fywq] {
    display: inline-block;
    margin-top: 20px;
    color: #2563eb;
    text-decoration: none;
    font-size: 14px;
}

    .forgot-link:hover[b-d2goz3fywq] {
        text-decoration: underline;
    }

.error-message[b-d2goz3fywq] {
    margin-top: 18px;
    color: #dc2626;
    font-weight: 600;
}
/* /Components/Pages/Internal/InternalLayout.razor.rz.scp.css */
/* The internal layout fits exactly inside 100vh: the top-menu takes its natural
   height, and the page-layout (sidebar + content) fills the remaining viewport.
   This replaces the older approach of `min-height: calc(100vh - 48px)` on the
   left-menu, which hardcoded the top-menu height to 48px. That hardcode was
   fragile: any padding/font/line-height change pushed the actual top-menu
   height past 48, making total page height > 100vh and producing a vertical
   scrollbar. The vertical scrollbar in turn triggered the horizontal-scroll
   feedback loop in internal-layout.js. Wrapping the layout in a 100vh flex
   column avoids both — no magic number, no scroll. */
.internal-root[b-rigg8l2ux9] {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.top-menu[b-rigg8l2ux9] {
    display: grid;
    grid-template-columns: max-content 1fr max-content;
    gap: 24px;
    align-items: center;
    box-sizing: border-box;
    background-color: #30619E;
    color: white;
    padding: 12px;
    min-width: 100%;
    flex-shrink: 0;
}

.top-menu-left[b-rigg8l2ux9],
.top-menu-center[b-rigg8l2ux9],
.top-menu-right[b-rigg8l2ux9] {
    display: flex;
    gap: 8px;
    align-items: center;
    white-space: nowrap;
}

.top-menu-left[b-rigg8l2ux9] {
    justify-self: start;
    text-align: left;
}

.top-menu-center[b-rigg8l2ux9] {
    justify-self: center;
    text-align: center;
}

.top-menu-right[b-rigg8l2ux9] {
    justify-self: end;
    text-align: right;
    position: relative;
}

.top-menu a[b-rigg8l2ux9],
.top-menu button[b-rigg8l2ux9],
.top-menu-dropdown summary[b-rigg8l2ux9],
.top-menu-text[b-rigg8l2ux9] {
    color: white;
    text-decoration: none;
    padding: 6px 12px;
    box-sizing: border-box;
}

.top-menu a[b-rigg8l2ux9],
.top-menu button[b-rigg8l2ux9],
.top-menu-dropdown summary[b-rigg8l2ux9] {
    border-radius: 6px;
}

.top-menu button[b-rigg8l2ux9] {
    background: none;
    border: 0;
    font: inherit;
    cursor: pointer;
}

    .top-menu a:hover[b-rigg8l2ux9],
    .top-menu button:hover[b-rigg8l2ux9],
    .top-menu-dropdown summary:hover[b-rigg8l2ux9] {
        background-color: #244B7C;
    }

.top-menu-dropdown[b-rigg8l2ux9] {
    position: relative;
}

    .top-menu-dropdown summary[b-rigg8l2ux9] {
        display: block;
        cursor: pointer;
        list-style: none;
    }

        .top-menu-dropdown summary[b-rigg8l2ux9]::-webkit-details-marker {
            display: none;
        }

.top-menu-dropdown-content[b-rigg8l2ux9] {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    min-width: 220px;
    background-color: #244B7C;
    padding: 8px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.top-menu-dropdown[open] .top-menu-dropdown-content[b-rigg8l2ux9] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.top-menu-dropdown-content a[b-rigg8l2ux9] {
    display: block;
    text-align: left;
}

    .top-menu-dropdown-content a:hover[b-rigg8l2ux9] {
        background-color: #1D3E66;
    }

/* User circle: round avatar showing initials of the logged-in user. Override
   the generic `.top-menu-dropdown summary` padding/radius so the element is
   square and pill-rounded into a circle via 50% radius + fixed size. */
.user-circle[b-rigg8l2ux9] {
    width: 36px;
    height: 36px;
    padding: 0 !important;
    border-radius: 50% !important;
    background-color: #244B7C;
    color: white;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

    .user-circle:hover[b-rigg8l2ux9] {
        background-color: #1D3E66;
    }

.user-info[b-rigg8l2ux9] {
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    margin-bottom: 4px;
    color: white;
    cursor: default;
    text-align: left;
    white-space: normal;
    word-break: break-word;
}

.user-info-name[b-rigg8l2ux9] {
    font-weight: 600;
    line-height: 1.2;
}

.user-info-email[b-rigg8l2ux9] {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 2px;
}

.page-layout[b-rigg8l2ux9] {
    display: grid;
    grid-template-columns: max-content 1fr;
    flex: 1;
    min-height: 0;
    min-width: 100%;
}

.left-menu[b-rigg8l2ux9] {
    box-sizing: border-box;
    background-color: #244B7C;
    color: white;
    padding: 12px;
    min-width: 220px;
}

    .left-menu a[b-rigg8l2ux9] {
        display: block;
        color: white;
        text-decoration: none;
        padding: 6px 12px;
        border-radius: 6px;
        white-space: nowrap;
    }

        .left-menu a:hover[b-rigg8l2ux9] {
            background-color: #1D3E66;
        }

.left-menu a.left-menu-child[b-rigg8l2ux9] {
    padding-left: 28px;
    font-size: 14px;
}

.left-menu a.left-menu-active[b-rigg8l2ux9] {
    background-color: #1D3E66;
    font-weight: 700;
}

.left-menu-heading[b-rigg8l2ux9] {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    text-transform: uppercase;
}

.left-menu-muted[b-rigg8l2ux9] {
    color: rgba(255, 255, 255, 0.72);
    padding: 6px 12px;
}

.left-menu-hidden[b-rigg8l2ux9] {
    display: none;
}

    .left-menu-hidden + .content[b-rigg8l2ux9] {
        grid-column: 1 / -1;
    }

.content[b-rigg8l2ux9] {
    /* DO NOT set `min-width: max-content` here. Inside the 1fr grid track,
       max-content lets wide children (tables, long strings) push the grid
       wider than the viewport, producing horizontal overflow that
       internal-layout.js then captures (scrollWidth > clientWidth) and locks
       in as a permanent horizontal scrollbar. `min-width: 0` opts out of the
       default `min-content` floor on grid items, letting the track stay
       viewport-bounded and allowing wide children to scroll inside .content
       rather than the whole page. */
    padding: 12px;
    box-sizing: border-box;
    min-width: 0;
    overflow: auto;
}

.top-menu-phone[b-rigg8l2ux9] {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
}

    .top-menu-phone .top-menu-left[b-rigg8l2ux9],
    .top-menu-phone .top-menu-center[b-rigg8l2ux9],
    .top-menu-phone .top-menu-right[b-rigg8l2ux9] {
        display: block;
        width: 100%;
        text-align: left;
        white-space: normal;
        justify-self: stretch;
    }

    .top-menu-phone .top-menu-center[b-rigg8l2ux9],
    .top-menu-phone .top-menu-right[b-rigg8l2ux9] {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        margin-top: 8px;
        padding-top: 8px;
    }

    .top-menu-phone .top-menu-text[b-rigg8l2ux9] {
        display: block;
        width: 100%;
        text-align: left;
        background-color: rgba(255, 255, 255, 0.12);
    }

    .top-menu-phone a[b-rigg8l2ux9],
    .top-menu-phone button[b-rigg8l2ux9] {
        display: block;
        box-sizing: border-box;
        width: 100%;
        text-align: left;
    }

    .top-menu-phone .top-menu-dropdown-content[b-rigg8l2ux9] {
        position: static;
        min-width: 0;
        background-color: #244B7C;
        box-shadow: none;
        padding: 8px;
        margin-top: 4px;
    }

.page-layout-phone[b-rigg8l2ux9] {
    display: block;
    width: 100%;
    min-width: 100%;
}

    .page-layout-phone .left-menu[b-rigg8l2ux9] {
        display: block;
        width: 100%;
        min-width: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .page-layout-phone .content[b-rigg8l2ux9] {
        display: block;
        width: 100%;
        min-width: 0;
    }
/* /Components/Pages/Internal/Misc/DashboardDatePicker.razor.rz.scp.css */
.ddp[b-113al979li] {
    position: relative;
    display: inline-block;
}

.ddp-trigger[b-113al979li] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 220px;
    justify-content: space-between;
    padding: 9px 14px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    cursor: pointer;
}

.ddp-trigger:hover[b-113al979li] {
    border-color: #94a3b8;
}

.ddp-caret[b-113al979li] {
    color: #64748b;
    font-size: 12px;
}

.ddp-backdrop[b-113al979li] {
    position: fixed;
    inset: 0;
    z-index: 1040;
}

.ddp-panel[b-113al979li] {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    z-index: 1050;
    width: 300px;
    max-width: calc(100vw - 24px);
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
    padding: 12px;
}

.ddp-modes[b-113al979li] {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.ddp-mode[b-113al979li] {
    flex: 1;
    padding: 7px 10px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    background: #f1f5f9;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
}

.ddp-mode-active[b-113al979li] {
    color: #fff;
    background: #1d63ff;
}

.ddp-presets[b-113al979li] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-height: 280px;
    overflow-y: auto;
}

.ddp-preset[b-113al979li] {
    text-align: left;
    padding: 8px 10px;
    font-size: 13.5px;
    color: #1e293b;
    background: transparent;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
}

.ddp-preset:hover[b-113al979li] {
    background: #f1f5f9;
}

.ddp-preset-active[b-113al979li] {
    color: #1d63ff;
    background: #edf2ff;
    font-weight: 600;
}

.ddp-custom[b-113al979li] {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e2e8f0;
}

.ddp-custom-title[b-113al979li],
.ddp-range-label[b-113al979li] {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 6px;
}

.ddp-range-label[b-113al979li] {
    margin-top: 8px;
}

.ddp-range[b-113al979li] {
    display: flex;
    gap: 8px;
}

.ddp-range label[b-113al979li] {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    font-size: 11.5px;
    color: #64748b;
}

.ddp-range input[b-113al979li] {
    width: 100%;
    box-sizing: border-box;
    padding: 6px 8px;
    font-size: 13px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
}

.ddp-apply[b-113al979li] {
    width: 100%;
    margin-top: 10px;
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: #1d63ff;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
}

.ddp-apply:hover[b-113al979li] {
    background: #1d4ed8;
}
/* /Components/Pages/Internal/Misc/NewsletterWidget.razor.rz.scp.css */
.code-snippet[b-3ot8pnktgc] {
    position: relative;
    background: #0f172a;
    border-radius: 8px;
    padding: 14px 16px;
    margin: 6px 0 4px;
    overflow: auto;
}

.code-snippet pre[b-3ot8pnktgc] {
    color: #e2e8f0;
    font-size: 13px;
    line-height: 1.5;
    white-space: pre-wrap;
    word-break: break-all;
    margin: 0;
}

.code-snippet code[b-3ot8pnktgc] {
    color: inherit;
    background: transparent;
    padding: 0;
}

.copy-btn[b-3ot8pnktgc] {
    position: absolute;
    top: 8px;
    right: 8px;
}
/* /Components/Pages/Internal/Misc/WidgetByCompany.razor.rz.scp.css */
/* Full width and right-aligned header sort/filter icons, matching the other widget
   table pages. Scoped here via ::deep so the shared component is untouched. */
.widget-tables[b-tuwvp5ja3n]  .ts-table {
    width: 100%;
}

.widget-tables[b-tuwvp5ja3n]  .ts-table-sort-head {
    display: flex;
    align-items: center;
}

.widget-tables[b-tuwvp5ja3n]  .ts-table-header-actions {
    margin-left: auto;
    padding-left: 0.75rem;
}
/* /Components/Pages/Internal/Misc/WidgetDashboard.razor.rz.scp.css */
.metric-card[b-05vispv5f4] {
    border: none;
    border-radius: 14px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

.metric-card .card-body[b-05vispv5f4] {
    padding: 20px 22px;
}

.metric-label[b-05vispv5f4] {
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.9;
}

.metric-value[b-05vispv5f4] {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.15;
    margin-top: 4px;
}

.metric-sub[b-05vispv5f4] {
    font-size: 12.5px;
    opacity: 0.85;
}

/* A metric card that links to its drill-down. */
.metric-link[b-05vispv5f4] {
    display: block;
    text-decoration: none;
    transition: transform 0.08s ease, box-shadow 0.08s ease;
}

.metric-link:hover .metric-card[b-05vispv5f4] {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.18);
}

.metric-blue[b-05vispv5f4] {
    background: linear-gradient(135deg, #1d63ff 0%, #4f86ff 100%);
}

.metric-teal[b-05vispv5f4] {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
}

.metric-slate[b-05vispv5f4] {
    background: linear-gradient(135deg, #475569 0%, #64748b 100%);
}

.metric-amber[b-05vispv5f4] {
    background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
}
/* /Components/Pages/Internal/Misc/WidgetDistinctComparisons.razor.rz.scp.css */
/* Full width and right-aligned header sort/filter icons, matching the other widget
   table pages. Scoped here via ::deep so the shared component is untouched. */
.widget-tables[b-nwmq6cg915]  .ts-table {
    width: 100%;
}

.widget-tables[b-nwmq6cg915]  .ts-table-sort-head {
    display: flex;
    align-items: center;
}

.widget-tables[b-nwmq6cg915]  .ts-table-header-actions {
    margin-left: auto;
    padding-left: 0.75rem;
}

/* The expand (detail) row must not pick up the parent row's hover grey, so the
   nested visitor table keeps a white background and its own visible hover. */
.widget-tables[b-nwmq6cg915]  .ts-table tbody tr.ts-row-detail:hover > td {
    background: transparent;
}

/* The inline expand hosts the shared Table; drop its 220px min-height (room for
   filter pop-ups) so a few rows don't leave a big gap, and hide the redundant top
   scroll-bar. */
.ts-table-embedded[b-nwmq6cg915]  .ts-table-scroll {
    min-height: 0;
}

.ts-table-embedded[b-nwmq6cg915]  .ts-table-scroll-sync {
    display: none;
}
/* /Components/Pages/Internal/Misc/WidgetDistinctVisitors.razor.rz.scp.css */
/* The shared Table renders its <table> at content width; make every table on this
   page (main and the inline expands) use the full available width. ::deep reaches
   into the child Table component. */
.widget-tables[b-g8nxhy7oks]  .ts-table {
    width: 100%;
}

/* Push the sort/filter icons to the right edge of each header cell. */
.widget-tables[b-g8nxhy7oks]  .ts-table-sort-head {
    display: flex;
    align-items: center;
}

.widget-tables[b-g8nxhy7oks]  .ts-table-header-actions {
    margin-left: auto;
    padding-left: 0.75rem;
}

/* The inline expand hosts the shared Table too. It reserves a 220px min-height
   (room for its filter pop-ups) which leaves a big empty gap under a few rows —
   drop it here only, and hide the redundant top scroll-bar in the narrow expand. */
.ts-table-embedded[b-g8nxhy7oks]  .ts-table-scroll {
    min-height: 0;
}

.ts-table-embedded[b-g8nxhy7oks]  .ts-table-scroll-sync {
    display: none;
}

/* The expand (detail) row must not pick up the parent row's hover grey, so the
   nested table keeps a white background and its own visible row/cell hover. */
.widget-tables[b-g8nxhy7oks]  .ts-table tbody tr.ts-row-detail:hover > td {
    background: transparent;
}

/* Long, unbreakable values (e.g. the user agent) must wrap inside the device card
   instead of forcing the whole table wider than the screen. */
.device-card dd[b-g8nxhy7oks] {
    min-width: 0;
    overflow-wrap: anywhere;
}
/* /Components/Pages/Internal/Misc/WidgetStats.razor.rz.scp.css */
.code-snippet[b-big9ttbuow] {
    position: relative;
    background: #0f172a;
    border-radius: 8px;
    padding: 14px 16px;
    margin: 6px 0 4px;
    overflow: auto;
}

.code-snippet pre[b-big9ttbuow] {
    color: #e2e8f0;
    font-size: 13px;
    line-height: 1.5;
    white-space: pre-wrap;
    word-break: break-all;
    margin: 0;
}

.code-snippet code[b-big9ttbuow] {
    color: inherit;
    background: transparent;
    padding: 0;
}

.copy-btn[b-big9ttbuow] {
    position: absolute;
    top: 8px;
    right: 8px;
}

/* Initial height only; the demo page sizes this iframe to the widget's actual
   height via window.frameElement (same-origin), so it has no empty gap and no
   inner scrollbar as the widget grows. */
.widget-demo-frame[b-big9ttbuow] {
    width: 100%;
    height: 500px;
    border: 1px solid #d6e7f5;
    border-radius: 8px;
    background: #fff;
    margin-top: 12px;
}
/* /Components/Pages/Layout/LayoutExample.razor.rz.scp.css */
.layout[b-rl87jla61c] {
    --page-background: white;
    --text-color: black;
    --link-color: blue;
    --h1-color: blue;
    --top-menu-background: #30619E;
    --top-menu-color: white;
    --top-menu-hover-background: #264E80;

    min-height: 100vh;
    background-color: var(--page-background);
    color: var(--text-color);
}

.layout a[b-rl87jla61c] {
    color: var(--link-color);
}

.layout h1[b-rl87jla61c] {
    color: var(--h1-color);
}

.top-menu[b-rl87jla61c] {
    display: flex;
    background-color: var(--top-menu-background);
    color: var(--top-menu-color);
}

.top-menu a[b-rl87jla61c] {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: var(--top-menu-color);
    text-decoration: none;
}

.top-menu a:hover[b-rl87jla61c] {
    background-color: var(--top-menu-hover-background);
    border-radius: 0.5rem;
}

.left[b-rl87jla61c] {
    flex: 1;
    text-align: left;
}

.center[b-rl87jla61c] {
    flex: 1;
    text-align: center;
}

.right[b-rl87jla61c] {
    flex: 1;
    text-align: right;
}
/* /Components/Pages/Layout/ResponsiveLayoutPage.razor.rz.scp.css */
body[b-suh642hw8n] {
    margin: 0;
    font-family: Verdana, sans-serif;
}

h1[b-suh642hw8n] {
    color: blue;
}

.top-menu[b-suh642hw8n] {
    display: grid;
    grid-template-columns: max-content 1fr max-content;
    gap: 24px;
    align-items: center;
    box-sizing: border-box;
    background-color: #30619E;
    color: white;
    padding: 12px;
    min-width: 100%;
}

.top-menu-left[b-suh642hw8n],
.top-menu-center[b-suh642hw8n],
.top-menu-right[b-suh642hw8n] {
    display: flex;
    gap: 8px;
    align-items: center;
    white-space: nowrap;
}

.top-menu-left[b-suh642hw8n] {
    justify-self: start;
    text-align: left;
}

.top-menu-center[b-suh642hw8n] {
    justify-self: center;
    text-align: center;
}

.top-menu-right[b-suh642hw8n] {
    justify-self: end;
    text-align: right;
    position: relative;
}

.top-menu a[b-suh642hw8n],
.top-menu button[b-suh642hw8n],
.top-menu-dropdown summary[b-suh642hw8n],
.top-menu-text[b-suh642hw8n] {
    color: white;
    text-decoration: none;
    padding: 6px 12px;
    box-sizing: border-box;
}

.top-menu a[b-suh642hw8n],
.top-menu button[b-suh642hw8n],
.top-menu-dropdown summary[b-suh642hw8n] {
    border-radius: 6px;
}

.top-menu button[b-suh642hw8n] {
    background: none;
    border: 0;
    font: inherit;
    cursor: pointer;
}

    .top-menu a:hover[b-suh642hw8n],
    .top-menu button:hover[b-suh642hw8n],
    .top-menu-dropdown summary:hover[b-suh642hw8n] {
        background-color: #244B7C;
    }

.top-menu-dropdown[b-suh642hw8n] {
    position: relative;
}

    .top-menu-dropdown summary[b-suh642hw8n] {
        display: block;
        cursor: pointer;
        list-style: none;
    }

        .top-menu-dropdown summary[b-suh642hw8n]::-webkit-details-marker {
            display: none;
        }

.top-menu-dropdown-content[b-suh642hw8n] {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    min-width: 160px;
    background-color: #244B7C;
    padding: 8px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.top-menu-dropdown[open] .top-menu-dropdown-content[b-suh642hw8n] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.top-menu-dropdown-content a[b-suh642hw8n] {
    display: block;
    text-align: left;
}

    .top-menu-dropdown-content a:hover[b-suh642hw8n] {
        background-color: #1D3E66;
    }

.page-layout[b-suh642hw8n] {
    display: grid;
    grid-template-columns: max-content 1fr;
    min-width: 100%;
}

.left-menu[b-suh642hw8n] {
    box-sizing: border-box;
    background-color: #244B7C;
    color: white;
    padding: 12px;
    min-width: 220px;
    min-height: calc(100vh - 48px);
}

    .left-menu a[b-suh642hw8n] {
        display: block;
        color: white;
        text-decoration: none;
        padding: 6px 12px;
        border-radius: 6px;
        white-space: nowrap;
    }

        .left-menu a:hover[b-suh642hw8n] {
            background-color: #1D3E66;
        }

.left-menu-hidden[b-suh642hw8n] {
    display: none;
}

    .left-menu-hidden + .content[b-suh642hw8n] {
        grid-column: 1 / -1;
    }

.content[b-suh642hw8n] {
    padding: 12px;
    box-sizing: border-box;
    min-width: max-content;
}

.top-menu-phone[b-suh642hw8n] {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
}

    .top-menu-phone .top-menu-left[b-suh642hw8n],
    .top-menu-phone .top-menu-center[b-suh642hw8n],
    .top-menu-phone .top-menu-right[b-suh642hw8n] {
        display: block;
        width: 100%;
        text-align: left;
        white-space: normal;
        justify-self: stretch;
    }

    .top-menu-phone .top-menu-center[b-suh642hw8n],
    .top-menu-phone .top-menu-right[b-suh642hw8n] {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        margin-top: 8px;
        padding-top: 8px;
    }

    .top-menu-phone .top-menu-text[b-suh642hw8n] {
        display: block;
        width: 100%;
        text-align: left;
        background-color: rgba(255, 255, 255, 0.12);
    }

    .top-menu-phone a[b-suh642hw8n],
    .top-menu-phone button[b-suh642hw8n] {
        display: block;
        box-sizing: border-box;
        width: 100%;
        text-align: left;
    }

    .top-menu-phone .top-menu-dropdown-content[b-suh642hw8n] {
        position: static;
        min-width: 0;
        background-color: #244B7C;
        box-shadow: none;
        padding: 8px;
        margin-top: 4px;
    }

.page-layout-phone[b-suh642hw8n] {
    display: block;
    width: 100%;
    min-width: 100%;
}

    .page-layout-phone .left-menu[b-suh642hw8n] {
        display: block;
        width: 100%;
        min-width: 0;
        min-height: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .page-layout-phone .content[b-suh642hw8n] {
        display: block;
        width: 100%;
        min-width: 0;
    }
/* /Components/Pages/OrderConfirmation.razor.rz.scp.css */
/* Clean printout: flat, ink-friendly, no page chrome. The Print button itself is
   hidden via Bootstrap's d-print-none. Browsers' "Save as PDF" uses this too. */
@media print {
    .card[b-5a1e09hv3t] {
        box-shadow: none;
        border: 1px solid #dee2e6;
    }

    .alert[b-5a1e09hv3t] {
        color: #000;
        background: #fff;
        border: 1px solid #dee2e6;
    }

    .text-primary[b-5a1e09hv3t],
    .text-success[b-5a1e09hv3t] {
        color: #000 !important;
    }
}
