/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-v9bos2bzih] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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-v9bos2bzih] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* ===================================================
   Impersonation banner
   =================================================== */
.impersonation-banner[b-v9bos2bzih] {
    background: #e74c3c;
    color: #fff;
    padding: 10px 16px;
    font-size: 1em;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.impersonation-stop-btn[b-v9bos2bzih] {
    margin-left: auto;
    padding: 8px 20px;
    font-size: 1em;
    font-weight: 700;
    background: #fff;
    color: #e74c3c;
    border: 2px solid #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.15s, color 0.15s;
}

    .impersonation-stop-btn:hover[b-v9bos2bzih] {
        background: #fce4e4;
    }

/* ===================================================
   Mobile header row (logo + hamburger)
   Visibility controlled by .mobile-only in app.css.
   When visible, made flex by the @media rule in app.css.
   =================================================== */
.mobile-header-row[b-v9bos2bzih] {
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.mobile-logo-link img[b-v9bos2bzih] {
    height: 36px;
    width: auto;
}

/* ===================================================
   Hamburger button
   =================================================== */
.hamburger-btn[b-v9bos2bzih] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.hamburger-btn span[b-v9bos2bzih] {
    display: block;
    width: 100%;
    height: 3px;
    background: #0a1a52;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
    transform-origin: center;
}

/* Animate to × when open */
.hamburger-btn.open span:nth-child(1)[b-v9bos2bzih] {
    transform: translateY(9.5px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2)[b-v9bos2bzih] {
    opacity: 0;
}

.hamburger-btn.open span:nth-child(3)[b-v9bos2bzih] {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* ===================================================
   Mobile drawer nav
   Always display:block — max-height:0 hides it, transition opens it.
   =================================================== */
.mobile-nav[b-v9bos2bzih] {
    display: block !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
    border-top: 2px solid #0a1a52;
}

.mobile-nav.open[b-v9bos2bzih] {
    max-height: 600px;
}

.mobile-nav-list[b-v9bos2bzih] {
    list-style: none;
    margin: 0;
    padding: 8px 0 16px;
}

.mobile-nav-list li[b-v9bos2bzih] {
    border-bottom: 1px solid #e8eaf0;
}

.mobile-nav-list li:last-child[b-v9bos2bzih] {
    border-bottom: none;
}

.mobile-nav-list a[b-v9bos2bzih],
.mobile-nav-btn[b-v9bos2bzih] {
    display: block;
    width: 100%;
    padding: 13px 20px;
    color: #0a1a52;
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    box-sizing: border-box;
}

.mobile-nav-list a:hover[b-v9bos2bzih],
.mobile-nav-btn:hover[b-v9bos2bzih] {
    background: #f0f4ff;
}

.mobile-nav-kontakt a[b-v9bos2bzih] {
    color: #555;
    font-weight: 400;
}

.mobile-cart-badge[b-v9bos2bzih] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e74c3c;
    color: #fff;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    font-size: 0.72em;
    font-weight: bold;
    padding: 0 4px;
}

/* ===================================================
   Environment / version indicator
   - Frame is a fixed 2px border around the viewport,
     pointer-events:none so it never blocks clicks.
   - Badge is a small fixed pill in the bottom-right.
   - Both are position:fixed so layout is identical
     across environments.
   =================================================== */
.env-frame[b-v9bos2bzih] {
    position: fixed;
    inset: 0;
    border: 2px solid transparent;
    pointer-events: none;
    z-index: 2000;
}

.env-frame--dev[b-v9bos2bzih] {
    border-color: #2e7d32; /* green */
}

.env-frame--test[b-v9bos2bzih] {
    border-color: #ef6c00; /* orange */
}

.env-frame--other[b-v9bos2bzih] {
    border-color: #6a1b9a; /* purple — anything unrecognized */
}

.env-badge[b-v9bos2bzih] {
    position: fixed;
    right: 8px;
    bottom: 8px;
    z-index: 2001;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 9px;
    border-radius: 999px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 11px;
    line-height: 1;
    color: #fff;
    background: #424242;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
    user-select: none;
    opacity: 0.85;
}

    .env-badge:hover[b-v9bos2bzih] {
        opacity: 1;
    }

.env-badge--dev[b-v9bos2bzih] {
    background: #2e7d32;
}

.env-badge--test[b-v9bos2bzih] {
    background: #ef6c00;
}

.env-badge--prod[b-v9bos2bzih] {
    background: #1565c0; /* blue, admin-only in prod */
}

.env-badge--other[b-v9bos2bzih] {
    background: #6a1b9a;
}

.env-badge__sep[b-v9bos2bzih] {
    opacity: 0.6;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-ozuwh28rnr] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-ozuwh28rnr] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-ozuwh28rnr] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-ozuwh28rnr] {
    font-size: 1.1rem;
}

.bi[b-ozuwh28rnr] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill[b-ozuwh28rnr] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill[b-ozuwh28rnr] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested[b-ozuwh28rnr] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-ozuwh28rnr] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-ozuwh28rnr] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-ozuwh28rnr] {
        padding-bottom: 1rem;
    }

    .nav-item[b-ozuwh28rnr]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-ozuwh28rnr]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-ozuwh28rnr]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-ozuwh28rnr] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-ozuwh28rnr] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-ozuwh28rnr] {
        display: none;
    }

    .nav-scrollable[b-ozuwh28rnr] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Pages/ProductDetail.razor.rz.scp.css */
/* "Alternative produkter" section.
   Mirrors the corporate site's "Relaterte produkter" look: a full-width
   horizontal divider that spans the content area, with the heading below it. */
.alternative_products[b-7dpuv45kbk] {
    float: left;
    width: 100%;
    margin: 40px 0 0;
    clear: both;
}

.alternative_products_divider[b-7dpuv45kbk] {
    width: 100%;
    height: 1px;
    margin: 0 0 20px;
    border: 0;
    background: #d4d4d4;
}

.alternative_products_title[b-7dpuv45kbk] {
    color: #0a1a52;
    font-size: 23px;
    line-height: 30px;
    margin: 0 0 20px;
}
/* /Components/Pages/Selgerportal.razor.rz.scp.css */
.selgerportal-filter[b-qc6g5olxqr] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.selgerportal-filter-wrap[b-qc6g5olxqr] {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 600px;
}

.selgerportal-filter-input[b-qc6g5olxqr] {
    flex: 1;
    padding: 8px 36px 8px 12px; /* right padding for clear button */
    font-size: 0.95em;
    border: 1px solid #ccc;
    border-radius: 4px;
}

    .selgerportal-filter-input:focus[b-qc6g5olxqr] {
        outline: none;
        border-color: #0a1a52;
        box-shadow: 0 0 0 2px rgba(10, 26, 82, 0.15);
    }

    .selgerportal-filter-input:disabled[b-qc6g5olxqr] {
        background: #f0f0f0;
        color: #999;
        cursor: not-allowed;
    }

.selgerportal-clear-btn[b-qc6g5olxqr] {
    position: absolute;
    right: 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1em;
    color: #999;
    line-height: 1;
    padding: 2px 4px;
    border-radius: 3px;
    transition: color 0.15s;
}

    .selgerportal-clear-btn:hover[b-qc6g5olxqr] {
        color: #0a1a52;
    }

/* ── Vis alle pill toggle ── */
.selgerportal-toggle-label[b-qc6g5olxqr] {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
}

    .selgerportal-toggle-label input[type="checkbox"][b-qc6g5olxqr] {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
        pointer-events: none;
    }

.selgerportal-toggle-track[b-qc6g5olxqr] {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    background: #ccc;
    border-radius: 12px;
    transition: background 0.2s;
    flex-shrink: 0;
}

.selgerportal-toggle-thumb[b-qc6g5olxqr] {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.25);
    transition: left 0.2s;
}

.selgerportal-toggle-label input:checked ~ .selgerportal-toggle-track[b-qc6g5olxqr] {
    background: #0a1a52;
}

.selgerportal-toggle-label input:checked ~ .selgerportal-toggle-track .selgerportal-toggle-thumb[b-qc6g5olxqr] {
    left: 23px;
}

.selgerportal-toggle-label:hover .selgerportal-toggle-track[b-qc6g5olxqr] {
    box-shadow: 0 0 0 3px rgba(10, 26, 82, 0.15);
}

.selgerportal-toggle-text[b-qc6g5olxqr] {
    font-size: 0.95em;
    color: #0a1a52;
    font-weight: 500;
}

.selgerportal-hint[b-qc6g5olxqr] {
    color: #666;
    font-style: italic;
    padding: 1.5rem 0;
}

.selgerportal-table-wrap[b-qc6g5olxqr] {
    overflow-x: auto;
    margin-bottom: 1rem;
}

.selgerportal-table[b-qc6g5olxqr] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9em;
}

    .selgerportal-table th[b-qc6g5olxqr] {
        background: #0a1a52;
        color: #fff;
        text-align: left;
        padding: 10px 12px;
        font-weight: 600;
        white-space: nowrap;
    }

    .selgerportal-table th.selgerportal-th-sortable[b-qc6g5olxqr] {
        cursor: pointer;
        user-select: none;
    }

        .selgerportal-table th.selgerportal-th-sortable:hover[b-qc6g5olxqr] {
            background: #1a3a82;
        }

    .selgerportal-table td[b-qc6g5olxqr] {
        padding: 8px 12px;
        border-bottom: 1px solid #e0e0e0;
    }

    .selgerportal-table tbody tr[b-qc6g5olxqr] {
        cursor: pointer;
        transition: background-color 0.15s;
    }

        .selgerportal-table tbody tr:hover[b-qc6g5olxqr] {
            background: #f0f4ff;
        }

        .selgerportal-table tbody tr.selected[b-qc6g5olxqr] {
            background: #d0dbf0;
            font-weight: 600;
        }

.selgerportal-actions[b-qc6g5olxqr] {
    margin-top: 1rem;
}

.selgerportal-actions-top[b-qc6g5olxqr] {
    margin-top: 0;
    margin-bottom: 1rem;
}

.selgerportal-impersonate-btn[b-qc6g5olxqr] {
    padding: 10px 24px;
    font-size: 1em;
    background: #0a1a52;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.15s;
}

    .selgerportal-impersonate-btn:hover:not(:disabled)[b-qc6g5olxqr] {
        background: #1a3a82;
    }

    .selgerportal-impersonate-btn:disabled[b-qc6g5olxqr] {
        opacity: 0.5;
        cursor: not-allowed;
    }
    }
/* /Components/Pages/SelgerportalHomeContent.razor.rz.scp.css */
.hc-tabs[b-zaq2ez9472] {
    display: flex;
    gap: 0.5rem;
    margin: 1.5rem 0 0;
    padding: 0.4rem;
    background: #eef1f8;
    border: 1px solid #c9cedd;
    border-radius: 8px;
}

.hc-tab[b-zaq2ez9472] {
    padding: 0.65rem 1.2rem;
    background: #fff;
    border: 1px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    color: #444;
    box-shadow: 0 1px 2px rgba(10, 26, 82, 0.08);
}

.hc-tab:hover[b-zaq2ez9472] {
    color: #0a1a52;
}

.hc-tab--active[b-zaq2ez9472] {
    color: #fff;
    background: #0a1a52;
    border-color: #0a1a52;
}

.hc-table-wrap[b-zaq2ez9472] {
    margin-top: 1.4rem;
    overflow: visible;
}

.hc-content-table[b-zaq2ez9472] {
    width: 100%;
    table-layout: fixed;
    font-size: 0.82rem;
}

.hc-favourites-table .hc-col-title[b-zaq2ez9472] {
    width: 34%;
}

.hc-favourites-table .hc-col-link[b-zaq2ez9472] {
    width: 20%;
}

.hc-content-table th[b-zaq2ez9472],
.hc-content-table td[b-zaq2ez9472] {
    padding-left: 0.45rem;
    padding-right: 0.45rem;
    vertical-align: middle;
    overflow: visible;
}

.hc-col-index[b-zaq2ez9472] {
    width: 44px;
}

.hc-col-image[b-zaq2ez9472] {
    width: 16%;
}

.hc-col-title[b-zaq2ez9472] {
    width: 19%;
}

.hc-col-link[b-zaq2ez9472] {
    width: 22%;
}

.hc-col-active[b-zaq2ez9472] {
    width: 62px;
}

.hc-col-published[b-zaq2ez9472] {
    width: 92px;
}

.hc-col-modified[b-zaq2ez9472] {
    width: 140px;
}

.hc-col-actions[b-zaq2ez9472] {
    width: 185px;
}

.hc-toolbar[b-zaq2ez9472] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.4rem;
}

.hc-toolbar h3[b-zaq2ez9472] {
    margin: 0;
    color: #0a1a52;
}

.hc-empty-cell[b-zaq2ez9472] {
    padding: 1.25rem 0.75rem !important;
}

.hc-center-cell[b-zaq2ez9472] {
    text-align: center;
}

.hc-modified-at[b-zaq2ez9472],
.hc-modified-by[b-zaq2ez9472] {
    display: block;
}

.hc-modified-by[b-zaq2ez9472] {
    margin-top: 0.15rem;
    font-size: 0.8rem;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hc-image-name[b-zaq2ez9472] {
    position: relative;
    display: inline-block;
    max-width: 100%;
    color: #0a1a52;
    cursor: zoom-in;
    overflow: visible;
    text-decoration: underline dotted;
    text-underline-offset: 0.2rem;
}

.hc-image-preview[b-zaq2ez9472] {
    position: absolute;
    left: 0;
    top: calc(100% + 0.5rem);
    z-index: 30;
    display: none;
    width: 180px;
    min-height: 110px;
    padding: 0.45rem;
    background: #fff;
    border: 1px solid #c9cedd;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(10, 26, 82, 0.2);
}

.hc-image-preview img[b-zaq2ez9472] {
    display: block;
    width: 100%;
    max-height: 140px;
    object-fit: contain;
}

.hc-image-name:hover .hc-image-preview[b-zaq2ez9472],
.hc-image-name:focus .hc-image-preview[b-zaq2ez9472] {
    display: block;
}

.hc-status[b-zaq2ez9472] {
    display: inline-flex;
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
}

.hc-status--enabled[b-zaq2ez9472] {
    color: #0a4f22;
    background: #dff5e7;
}

.hc-status--disabled[b-zaq2ez9472] {
    color: #777;
    background: #ededed;
}

.hc-dialog-backdrop[b-zaq2ez9472] {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.42);
}

.hc-dialog[b-zaq2ez9472] {
    width: min(560px, 100%);
    padding: 1.4rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.hc-dialog h3[b-zaq2ez9472] {
    margin: 0 0 1rem;
    color: #0a1a52;
}

.hc-dialog-form[b-zaq2ez9472] {
    display: grid;
    gap: 0.85rem;
}

.hc-dialog-form label[b-zaq2ez9472] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.hc-dialog-enabled[b-zaq2ez9472] {
    flex-direction: row !important;
    align-items: center;
    font-weight: 600;
}

.hc-dialog-actions[b-zaq2ez9472] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.hc-cancel-btn[b-zaq2ez9472] {
    padding: 0.45rem 1.1rem;
    color: #0a1a52;
    background: #fff;
    border: 1px solid #b8bed0;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.hc-cancel-btn:hover:not(:disabled)[b-zaq2ez9472] {
    background: #eef1f8;
}

.hc-cancel-btn:disabled[b-zaq2ez9472] {
    opacity: 0.6;
    cursor: not-allowed;
}

.hc-input[b-zaq2ez9472] {
    width: 100%;
    padding: 0.35rem 0.5rem;
    border: 1px solid #c4c8d2;
    border-radius: 3px;
    box-sizing: border-box;
}

.hc-icon-btn[b-zaq2ez9472] {
    margin-left: 0.35rem;
    padding: 0.3rem 0.48rem;
    font-size: 0.78rem;
    line-height: 1;
    color: #0a1a52;
    background: #fff;
    border: 1px solid #c4c8d2;
    border-radius: 3px;
    cursor: pointer;
}

.hc-icon-btn:hover:not(:disabled)[b-zaq2ez9472] {
    background: #eef0f8;
}

.hc-icon-btn:disabled[b-zaq2ez9472] {
    opacity: 0.4;
    cursor: not-allowed;
}

.hc-icon-btn--danger[b-zaq2ez9472] {
    color: #a02020;
    border-color: #d8b0b0;
}

.hc-icon-btn--danger:hover:not(:disabled)[b-zaq2ez9472] {
    background: #fbeaea;
}

[b-zaq2ez9472] .sc-save-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 1.1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    background-color: #0a1a52;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.15s ease, opacity 0.15s ease;
}

[b-zaq2ez9472] .sc-save-btn:hover:not(:disabled) {
    background-color: #162d8a;
}

[b-zaq2ez9472] .sc-save-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
/* /Components/Pages/SelgerportalOrders.razor.rz.scp.css */
.registration-detail-row > td[b-3rd27cazk4] {
    background: #f8faff;
    border-bottom: 1px solid #e0e0e0;
    padding: 12px 16px;
}

.order-detail-grid[b-3rd27cazk4] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px 14px;
}

.order-detail-item[b-3rd27cazk4] {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 8px 10px;
    background: #ffffff;
    border: 1px solid #dde5f3;
    border-radius: 4px;
}

.order-detail-item-wide[b-3rd27cazk4] {
    grid-column: 1 / -1;
}

.order-detail-label[b-3rd27cazk4] {
    font-weight: 600;
    color: #0a1a52;
    white-space: nowrap;
}

.order-detail-label[b-3rd27cazk4]::after {
    content: ":";
}

.order-detail-value[b-3rd27cazk4] {
    color: #1f1f1f;
    min-width: 0;
}
/* /Components/Pages/SelgerportalRegistrations.razor.rz.scp.css */
.registration-status.linked[b-pz2khdv8vz] {
    color: #4a8f5e;
    font-size: 1.1rem;
    font-weight: bold;
}

.registration-detail-row > td[b-pz2khdv8vz] {
    background: #f8faff;
    border-bottom: 1px solid #e0e0e0;
    padding: 12px 16px;
}

.registration-detail[b-pz2khdv8vz] {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 6px 16px;
    margin: 0;
}

.registration-detail dt[b-pz2khdv8vz] {
    font-weight: 600;
    color: #0a1a52;
}

.registration-detail dd[b-pz2khdv8vz] {
    margin: 0;
}
/* /Components/Pages/SelgerportalSidebar.razor.rz.scp.css */
/* Sidebar internal styling. Scoped CSS only matches elements rendered by
   THIS component, so layout rules for the parent flex container live in
   app.css instead. */

.selgerportal-sidebar[b-rmwstdx9of] {
    background: #f5f7fb;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 8px 0;
    position: sticky;
    top: 16px;
}

    .selgerportal-sidebar nav[b-rmwstdx9of],
    .selgerportal-sidebar ul[b-rmwstdx9of] {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .selgerportal-sidebar li[b-rmwstdx9of] {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        /* Defeat any global ul-li ::before bullet/marker. */
        .selgerportal-sidebar li[b-rmwstdx9of]::before,
        .selgerportal-sidebar li[b-rmwstdx9of]::marker {
            content: none;
            display: none;
        }

    .selgerportal-sidebar a[b-rmwstdx9of] {
        display: block;
        padding: 10px 16px;
        color: #0a1a52;
        text-decoration: none;
        font-weight: 500;
        border-left: 3px solid transparent;
        transition: background-color 0.15s, border-color 0.15s;
    }

        .selgerportal-sidebar a:hover[b-rmwstdx9of] {
            background: #e8edfa;
            text-decoration: none;
        }

.selgerportal-sidebar-item.active a[b-rmwstdx9of] {
    background: #fff;
    border-left-color: #0a1a52;
    font-weight: 600;
}

/* /Components/Pages/SelgerportalSpecialContent.razor.rz.scp.css */
.sc-save-btn[b-bi3y9nwesy] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-left: 0.75rem;
    padding: 0.45rem 1.1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    background-color: #0a1a52;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.15s ease, opacity 0.15s ease;
}

.sc-save-btn:hover:not(:disabled)[b-bi3y9nwesy] {
    background-color: #162d8a;
}

.sc-save-btn:disabled[b-bi3y9nwesy] {
    opacity: 0.6;
    cursor: not-allowed;
}
/* /Components/Pages/SelgerportalUploads.razor.rz.scp.css */
.upload-status[b-zslvrlik1j] {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.upload-status--in-use[b-zslvrlik1j] {
    color: #0a4f22;
    background: #dff5e7;
    border: 1px solid #9ad9af;
}

.upload-status--unused[b-zslvrlik1j] {
    color: #555;
    background: #f0f0f0;
    border: 1px solid #d0d0d0;
}

.upload-delete-btn[b-zslvrlik1j] {
    padding: 0.35rem 0.75rem;
    color: #a02020;
    background: #fff;
    border: 1px solid #d8b0b0;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.upload-delete-btn:hover:not(:disabled)[b-zslvrlik1j] {
    background: #fbeaea;
}

.upload-delete-btn:disabled[b-zslvrlik1j] {
    color: #777;
    background: #f5f5f5;
    border-color: #ddd;
    cursor: not-allowed;
    opacity: 0.7;
}
