/* /Components/Layout/LoginLayout.razor.rz.scp.css */
.login-page[b-gauek9uwes] {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/images/login-bg.jpg') center center / cover no-repeat;
    background-attachment: fixed;
    padding: 2rem;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* ===========================================
   MainLayout – Flex-based layout
   =========================================== */

/* App layout: sidebar + main */
.app-layout[b-5vasnmzrcw] {
    display: flex;
    min-height: 100vh;
}

.app-main[b-5vasnmzrcw] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background-color: var(--mud-palette-background, #fafafc);
}

/* Top bar (profile + language selector) */
.app-topbar[b-5vasnmzrcw] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 12px 24px;
    background-color: #fff;
    border-bottom: 1px solid #e6ebeb;
    flex-shrink: 0;
}

.topbar-actions[b-5vasnmzrcw] {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Main content area */
.main-content[b-5vasnmzrcw] {
    flex: 1;
    padding: 1.5rem 2rem;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

/* Embed-läge för iFrame-inbäddning */
.embed-container[b-5vasnmzrcw] {
    min-height: 100vh;
    background-color: #fff;
}

.embed-container .content[b-5vasnmzrcw] {
    padding: 1rem !important;
}

#blazor-error-ui[b-5vasnmzrcw] {
    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-5vasnmzrcw] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* ===========================================
   NavMenu – Layout
   =========================================== */

/* Nav Container */
.nav-container[b-o4ag0p61be] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 250px;
    padding: 20px 16px 16px 16px;
    background-color: var(--mud-palette-surface);
    border-right: 1px solid var(--mud-palette-divider);
    overflow: hidden;
    flex-shrink: 0;
    transition: width 200ms ease;
}

.nav-container.collapsed[b-o4ag0p61be] {
    width: 60px;
    padding: 20px 8px 16px 8px;
    align-items: center;
}

/* Header: Logo + Toggle */
.nav-header[b-o4ag0p61be] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 9px;
    margin-bottom: 27px;
    flex-shrink: 0;
}

.collapsed .nav-header[b-o4ag0p61be] {
    justify-content: center;
    padding: 0;
}

/* Brand / Logo */
.nav-brand[b-o4ag0p61be] {
    flex-shrink: 0;
}

.brand-link[b-o4ag0p61be] {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-link:hover[b-o4ag0p61be] {
    text-decoration: none;
}

.brand-logo[b-o4ag0p61be] {
    height: 24px;
    width: auto;
    object-fit: contain;
}

/* Toggle button */
.nav-toggle-btn[b-o4ag0p61be] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    padding: 4px 6px;
    border: none;
    border-radius: 4px;
    background: transparent;
    color: var(--mud-palette-text-primary);
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 150ms ease, border-color 150ms ease;
}

.nav-toggle-btn:hover[b-o4ag0p61be] {
    background-color: rgba(186, 188, 189, 0.2);
    outline: 1px solid #cecfd0;
}

/* ===========================================
   NavMenu – Navigation Links
   =========================================== */

/* Nav menu fills the middle space */
[b-o4ag0p61be] .nav-menu {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

/* All nav links: base styling */
[b-o4ag0p61be] .nav-menu .mud-nav-link {
    padding: 8px;
    border-radius: 2px;
    gap: 0;
    font-size: var(--body-size-sm, 12px);
    line-height: var(--body-lh-sm, 12px);
    font-weight: var(--font-weight-regular);
    color: var(--mud-palette-text-primary);
    min-height: unset;
    margin-bottom: 4px;
    align-items: center;
}

/* Nav link icon */
[b-o4ag0p61be] .nav-menu .mud-nav-link .mud-nav-link-icon {
    margin: 0;
    color: inherit;
}

/* Nav link text (padding-left for spacing from icon) */
[b-o4ag0p61be] .nav-menu .mud-nav-link .mud-nav-link-text {
    padding-left: 12px;
}

/* Active nav link: Figma active state */
[b-o4ag0p61be] .nav-menu .mud-nav-link.mud-nav-link-active {
    background-color: #fafafc;
    border: 1px solid var(--mud-palette-divider);
    padding: 9px;
    font-weight: var(--font-weight-semibold);
    color: var(--mud-palette-primary);
}

[b-o4ag0p61be] .nav-menu .mud-nav-link.mud-nav-link-active .mud-nav-link-icon {
    color: var(--mud-palette-primary);
}

/* Collapsed: hide text, center icon-only links */
.collapsed[b-o4ag0p61be]  .nav-menu .mud-nav-link {
    justify-content: center;
    padding: 8px 9px;
}

.collapsed[b-o4ag0p61be]  .nav-menu .mud-nav-link .mud-nav-link-text {
    display: none;
}

.collapsed[b-o4ag0p61be]  .nav-menu .mud-nav-link.mud-nav-link-active {
    padding: 9px;
}

/* Section label for admin area */
.nav-section-label[b-o4ag0p61be] {
    color: #6b7280;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}


/* /Components/Layout/SupportLayout.razor.rz.scp.css */
/* Support Layout – scoped styles for own HTML elements only.
   MudBlazor overrides (support-page, support-appbar, support-main, footer-heading)
   are in wwwroot/css/components.css */

.support-logo[b-zagmq6z392] {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.support-logo .logo-image[b-zagmq6z392] {
    height: 40px;
    width: auto;
}

.support-nav[b-zagmq6z392] {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Footer */
.support-footer[b-zagmq6z392] {
    background-color: #28292e;
    padding: 48px 24px 24px;
    margin-top: auto;
}

.support-footer-content[b-zagmq6z392] {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.support-footer-brand[b-zagmq6z392] {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

.support-footer-brand .footer-logo[b-zagmq6z392] {
    height: 36px;
    margin-bottom: 16px;
}

.support-footer-links[b-zagmq6z392] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.support-footer-bottom[b-zagmq6z392] {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .support-footer-content[b-zagmq6z392] {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
/* /Components/Pages/Admin/CategoryAdmin.razor.rz.scp.css */
/* Stilar hanteras via MudBlazor-komponenter och globala CSS-filer */
/* /Components/Pages/Admin/CategoryEditorModal.razor.rz.scp.css */
/* Stilar hanteras via MudBlazor-komponenter och globala CSS-filer */
/* /Components/Pages/Admin/DeploymentStatus.razor.rz.scp.css */
/* Scoped styles for DeploymentStatus admin page */
/* /Components/Pages/Admin/LocksAdmin.razor.rz.scp.css */
/*
 * LocksAdmin – scoped styles
 *
 * MudDataGrid/table styles live in wwwroot/css/data-grid.css.
 * Old bootstrap/custom CSS removed during MudBlazor migration.
 */
/* /Components/Pages/Admin/SupportAdmin.razor.rz.scp.css */
/* Stilar hanteras via MudBlazor-komponenter och globala CSS-filer */
/* /Components/Pages/Admin/SupportEditor.razor.rz.scp.css */
/* Support Editor Styles */
.support-editor-container[b-g4cda7he8g] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px;
}

/* Header */
.editor-header[b-g4cda7he8g] {
    margin-bottom: 24px;
}

.back-link[b-g4cda7he8g] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    text-decoration: none;
    font-size: var(--body-size-md);
    margin-bottom: 12px;
}

.back-link:hover[b-g4cda7he8g] {
    color: #129895;
}

.editor-header h1[b-g4cda7he8g] {
    font-size: var(--heading-size-h2);
    font-weight: var(--font-weight-semibold);
    color: #28292e;
    margin: 0;
}

/* Loading state */
.editor-loading[b-g4cda7he8g] {
    display: flex;
    justify-content: center;
    padding: 80px 0;
}

/* Not found state */
.editor-not-found[b-g4cda7he8g] {
    text-align: center;
    padding: 80px 24px;
    background: #f9fafb;
    border-radius: 12px;
}

.editor-not-found i[b-g4cda7he8g] {
    font-size: 48px;
    color: #f59e0b;
    display: block;
    margin-bottom: 16px;
}

.editor-not-found h3[b-g4cda7he8g] {
    font-size: var(--heading-size-h4);
    font-weight: var(--font-weight-semibold);
    color: #28292e;
    margin: 0 0 8px 0;
}

.editor-not-found p[b-g4cda7he8g] {
    font-size: var(--body-size-md);
    color: #6b7280;
    margin: 0 0 24px 0;
}

/* Editor layout */
.editor-content[b-g4cda7he8g] {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
}

/* Main editor area */
.editor-main[b-g4cda7he8g] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0; /* Prevent grid blowout from large content */
    overflow: hidden;
}

/* Form elements */
.form-group[b-g4cda7he8g] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label[b-g4cda7he8g] {
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-regular);
    color: #28292e;
}

.form-group input[type="text"][b-g4cda7he8g],
.form-group input[type="number"][b-g4cda7he8g],
.form-group textarea[b-g4cda7he8g],
.form-group select[b-g4cda7he8g] {
    padding: 10px 14px;
    font-size: var(--body-size-md);
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus[b-g4cda7he8g],
.form-group textarea:focus[b-g4cda7he8g],
.form-group select:focus[b-g4cda7he8g] {
    outline: none;
    border-color: #129895;
    box-shadow: 0 0 0 3px rgba(18, 152, 149, 0.1);
}

.form-group input:disabled[b-g4cda7he8g] {
    background: #f3f4f6;
    color: #6b7280;
    cursor: not-allowed;
}

.field-hint[b-g4cda7he8g] {
    font-size: var(--body-size-sm);
    color: #9ca3af;
}

.field-error[b-g4cda7he8g] {
    font-size: var(--body-size-sm);
    color: #dc2626;
}

/* Language tabs */
.language-tabs[b-g4cda7he8g] {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    padding: 4px;
    background: #f3f4f6;
    border-radius: 10px;
    flex-wrap: wrap;
}

.language-tab[b-g4cda7he8g] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-regular);
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
}

.language-tab:hover[b-g4cda7he8g] {
    background: #e5e7eb;
    color: #28292e;
}

.language-tab.active[b-g4cda7he8g] {
    background: #fff;
    color: #129895;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.language-tab .tab-flag[b-g4cda7he8g] {
    font-size: 18px;
    line-height: 1;
}

.language-tab.add-tab[b-g4cda7he8g] {
    color: #129895;
}

.language-tab.add-tab:hover[b-g4cda7he8g] {
    background: #e0f2f1;
}

.language-tab.translating-indicator[b-g4cda7he8g] {
    color: #129895;
    cursor: default;
}

.language-tab.translating-indicator .spinner-border[b-g4cda7he8g] {
    width: 16px;
    height: 16px;
    border-width: 2px;
}

.add-language-dropdown[b-g4cda7he8g] {
    position: relative;
}

.add-language-dropdown .dropdown-menu[b-g4cda7he8g] {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 4px;
    background: #fff;
    border: 1px solid #e6ebeb;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    z-index: 100;
    padding: 4px;
}

.add-language-dropdown .dropdown-item[b-g4cda7he8g] {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border: none;
    background: transparent;
    border-radius: 6px;
    font-size: var(--body-size-md);
    color: #28292e;
    cursor: pointer;
    text-align: left;
}

.add-language-dropdown .dropdown-item:hover[b-g4cda7he8g] {
    background: #f3f4f6;
}

.add-language-dropdown .dropdown-item .tab-flag[b-g4cda7he8g] {
    font-size: 18px;
}

/* Slug input */
.slug-input-wrapper[b-g4cda7he8g] {
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    overflow: hidden;
}

.slug-prefix[b-g4cda7he8g] {
    padding: 10px 12px;
    background: #f3f4f6;
    color: #6b7280;
    font-size: var(--body-size-md);
    border-right: 1px solid #d1d5db;
}

.slug-input-wrapper input[b-g4cda7he8g] {
    flex: 1;
    border: none !important;
    border-radius: 0 !important;
}

.slug-input-wrapper input:focus[b-g4cda7he8g] {
    box-shadow: none !important;
}

/* Checkbox */
.checkbox-label[b-g4cda7he8g] {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"][b-g4cda7he8g] {
    width: 18px;
    height: 18px;
    accent-color: #129895;
    cursor: pointer;
}

.checkbox-label span[b-g4cda7he8g] {
    font-weight: var(--font-weight-regular);
}

/* Editor wrapper */
.editor-wrapper[b-g4cda7he8g] {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.editor-wrapper[b-g4cda7he8g]  .rz-html-editor {
    border: none;
}

.editor-wrapper[b-g4cda7he8g]  .rz-html-editor-content {
    min-height: 400px;
    font-size: var(--body-size-lg);
}

/* Prevent images from breaking layout */
.editor-wrapper[b-g4cda7he8g]  .rz-html-editor-content img {
    max-width: 100%;
    height: auto;
}

/* Sidebar */
.editor-sidebar[b-g4cda7he8g] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-card[b-g4cda7he8g] {
    background: #fff;
    border: 1px solid #e6ebeb;
    border-radius: 12px;
    padding: 20px;
}

.sidebar-card h3[b-g4cda7he8g] {
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-semibold);
    color: #28292e;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Meta card */
.meta-card .meta-item[b-g4cda7he8g] {
    display: flex;
    justify-content: space-between;
    font-size: var(--body-size-sm);
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}

.meta-card .meta-item:last-child[b-g4cda7he8g] {
    border-bottom: none;
}

.meta-label[b-g4cda7he8g] {
    color: #6b7280;
}

/* Translation card */
.translation-card[b-g4cda7he8g] {
    border-color: #fef3c7;
    background: #fffbeb;
}

.translation-warning[b-g4cda7he8g] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 16px;
}

.translation-warning i[b-g4cda7he8g] {
    color: #f59e0b;
    font-size: 20px;
    flex-shrink: 0;
}

.translation-warning div[b-g4cda7he8g] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.translation-warning strong[b-g4cda7he8g] {
    font-size: var(--body-size-sm);
    color: #92400e;
}

.translation-warning small[b-g4cda7he8g] {
    font-size: var(--body-size-sm);
    color: #b45309;
}

.translation-ok[b-g4cda7he8g] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f0fdf4;
    border-radius: 8px;
    color: #166534;
    font-size: var(--body-size-sm);
}

.translation-ok i[b-g4cda7he8g] {
    font-size: 18px;
    color: #22c55e;
}

/* Sidebar actions */
.sidebar-actions[b-g4cda7he8g] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.error-message[b-g4cda7he8g],
.success-message[b-g4cda7he8g] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: var(--body-size-sm);
}

.error-message[b-g4cda7he8g] {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.success-message[b-g4cda7he8g] {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

/* Buttons */
.btn[b-g4cda7he8g] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-semibold);
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-block[b-g4cda7he8g] {
    width: 100%;
}

.btn-primary[b-g4cda7he8g] {
    background: #129895;
    color: #fff;
}

.btn-primary:hover:not(:disabled)[b-g4cda7he8g] {
    background: #0d7a78;
}

.btn-secondary[b-g4cda7he8g] {
    background: #f3f4f6;
    color: #374151;
}

.btn-secondary:hover[b-g4cda7he8g] {
    background: #e5e7eb;
}

.btn-outline[b-g4cda7he8g] {
    background: transparent;
    border: 1px solid #d1d5db;
    color: #6b7280;
}

.btn-outline:hover[b-g4cda7he8g] {
    background: #f9fafb;
    border-color: #9ca3af;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .editor-content[b-g4cda7he8g] {
        grid-template-columns: 1fr;
    }

    .editor-sidebar[b-g4cda7he8g] {
        order: -1;
    }
}

/* Readonly category/sort info for non-Swedish versions */
.readonly-info[b-g4cda7he8g] {
    background: #f8f9fa;
    border: 1px solid #e6ebeb;
    border-radius: 8px;
    padding: 14px 16px;
}

.readonly-info small[b-g4cda7he8g] {
    display: block;
    color: #9ca3af;
    font-size: var(--body-size-sm);
    margin-top: 8px;
    font-style: italic;
}

.readonly-value[b-g4cda7he8g] {
    font-size: var(--body-size-sm);
    color: #374151;
    padding: 6px 0;
}

.readonly-value strong[b-g4cda7he8g] {
    color: #6b7280;
    font-weight: var(--font-weight-regular);
    margin-right: 6px;
}

@media (max-width: 640px) {
    .support-editor-container[b-g4cda7he8g] {
        padding: 16px;
    }
}
/* /Components/Pages/Admin/TranslationsAdmin.razor.rz.scp.css */
/* Stilar hanteras via MudBlazor-komponenter och globala CSS-filer */
/* /Components/Pages/Admin/TranslationsEditor.razor.rz.scp.css */
/*
 * TranslationsEditor – scoped styles
 *
 * MudDataGrid/table styles live in wwwroot/css/data-grid.css
 * (class "translations-grid" for fixed column widths).
 * Old bootstrap CSS removed during MudBlazor migration.
 */
/* /Components/Pages/Auth/ForgotPassword.razor.rz.scp.css */
/* =============================================
   Forgot Password Card – matches Login card style
   ============================================= */

.login-card[b-q2rd9z6bgu] {
    background: white;
    border-left: 1px solid #e6ebeb;
    border-radius: 24px;
    padding: 48px;
    width: 580px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Header: brand + language selector */
.login-card-header[b-q2rd9z6bgu] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.login-brand-logo[b-q2rd9z6bgu] {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.login-language-selector[b-q2rd9z6bgu] {
    flex-shrink: 0;
}

/* Welcome section */
.login-welcome[b-q2rd9z6bgu] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.login-welcome-title[b-q2rd9z6bgu] {
    font-family: var(--font-family-heading);
    font-size: var(--heading-size-h1);
    font-weight: var(--font-weight-semibold);
    line-height: var(--heading-lh-h1);
    color: var(--text-heading);
    margin: 0;
}

.login-welcome-subtitle[b-q2rd9z6bgu] {
    font-family: var(--font-family-body);
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-regular);
    line-height: var(--body-lh-md);
    color: var(--text-heading);
    margin: 0;
}

/* Form box */
.login-form-box[b-q2rd9z6bgu] {
    background: #fafafc;
    border: 1px solid #e6ebeb;
    border-radius: 8px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.login-form-header[b-q2rd9z6bgu] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.login-form-title[b-q2rd9z6bgu] {
    font-family: var(--font-family-heading);
    font-size: var(--heading-size-h2);
    font-weight: var(--font-weight-semibold);
    line-height: var(--heading-lh-h2);
    color: var(--text-heading);
    margin: 0;
}

/* Fields */
.login-fields[b-q2rd9z6bgu] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Actions */
.login-actions[b-q2rd9z6bgu] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-top: 16px;
}

/* Override MudBlazor uppercase default */
.login-actions[b-q2rd9z6bgu]  .mud-button-label {
    text-transform: none;
    font-family: var(--font-family-body);
    font-size: var(--body-size-lg);
    font-weight: var(--font-weight-semibold);
    line-height: var(--body-lh-lg);
}

/* Back to login link */
.login-back-row[b-q2rd9z6bgu] {
    text-align: center;
}

.login-back-link[b-q2rd9z6bgu] {
    font-family: var(--font-family-body);
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-semibold);
    line-height: var(--body-lh-md);
    color: var(--text-heading);
    text-decoration: none;
}

.login-back-link:hover[b-q2rd9z6bgu] {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 640px) {
    .login-card[b-q2rd9z6bgu] {
        width: 100%;
        padding: 24px;
        border-radius: 16px;
        gap: 24px;
    }

    .login-form-box[b-q2rd9z6bgu] {
        padding: 24px;
    }

    .login-brand-logo[b-q2rd9z6bgu] {
        height: 32px;
    }
}
/* /Components/Pages/Auth/Login.razor.rz.scp.css */
/* =============================================
   Login Card – Figma: centered card on bg image
   ============================================= */

.login-card[b-8yye1e8src] {
    background: white;
    border-left: 1px solid #e6ebeb;
    border-radius: 24px;
    padding: 48px;
    width: 580px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Header: brand + language selector */
.login-card-header[b-8yye1e8src] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.login-brand-logo[b-8yye1e8src] {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.login-language-selector[b-8yye1e8src] {
    flex-shrink: 0;
}

/* Welcome section */
.login-welcome[b-8yye1e8src] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.login-welcome-title[b-8yye1e8src] {
    font-family: var(--font-family-heading);
    font-size: var(--heading-size-h1);
    font-weight: var(--font-weight-semibold);
    line-height: var(--heading-lh-h1);
    color: var(--text-heading);
    margin: 0;
}

.login-welcome-subtitle[b-8yye1e8src] {
    font-family: var(--font-family-body);
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-regular);
    line-height: var(--body-lh-md);
    color: var(--text-heading);
    margin: 0;
}

/* Form box */
.login-form-box[b-8yye1e8src] {
    background: #fafafc;
    border: 1px solid #e6ebeb;
    border-radius: 8px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.login-form-header[b-8yye1e8src] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.login-form-title[b-8yye1e8src] {
    font-family: var(--font-family-heading);
    font-size: var(--heading-size-h2);
    font-weight: var(--font-weight-semibold);
    line-height: var(--heading-lh-h2);
    color: var(--text-heading);
    margin: 0;
}

.login-form-subtitle[b-8yye1e8src] {
    font-family: var(--font-family-body);
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-regular);
    line-height: var(--body-lh-md);
    color: var(--text-heading);
    margin: 0;
}

/* Fields */
.login-fields[b-8yye1e8src] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Options row: remember me + forgot password */
.login-options-row[b-8yye1e8src] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    margin-bottom: 8px;
}

.login-remember-me[b-8yye1e8src] {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    font-family: var(--font-family-body);
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-regular);
    line-height: var(--body-lh-md);
    color: var(--text-heading);
}

.login-remember-me input[type="checkbox"][b-8yye1e8src] {
    width: 24px;
    height: 24px;
    accent-color: #129895;
    cursor: pointer;
    margin: 0;
}

.login-forgot-link[b-8yye1e8src] {
    font-family: var(--font-family-body);
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-semibold);
    line-height: var(--body-lh-md);
    color: var(--text-heading);
    text-decoration: none;
}

.login-forgot-link:hover[b-8yye1e8src] {
    text-decoration: underline;
}

/* Content wrapper: welcome + form box */
.login-content[b-8yye1e8src] {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

/* Form fields area: inputs + actions */
.login-form-fields-area[b-8yye1e8src] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Actions */
.login-actions[b-8yye1e8src] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

/* Create account */
.login-create-account[b-8yye1e8src] {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-body);
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-regular);
    line-height: var(--body-lh-md);
    color: var(--text-heading);
}

.login-create-account-link[b-8yye1e8src] {
    font-family: var(--font-family-body);
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-regular);
    line-height: var(--body-lh-md);
    color: var(--text-heading);
    text-decoration: none;
}

.login-create-account-link:hover[b-8yye1e8src] {
    text-decoration: underline;
}

/* Override MudBlazor uppercase default */
.login-actions :deep(.mud-button-label)[b-8yye1e8src] {
    text-transform: none;
    font-family: var(--font-family-body);
    font-size: var(--body-size-lg);
    font-weight: var(--font-weight-semibold);
    line-height: var(--body-lh-lg);
}

/* Responsive */
@media (max-width: 640px) {
    .login-card[b-8yye1e8src] {
        width: 100%;
        padding: 24px;
        border-radius: 16px;
        gap: 24px;
    }

    .login-content[b-8yye1e8src] {
        gap: 16px;
    }

    .login-form-box[b-8yye1e8src] {
        padding: 24px;
    }

    .login-brand-logo[b-8yye1e8src] {
        height: 32px;
    }
}
/* /Components/Pages/Company/AddStaffDialog.razor.rz.scp.css */
/*
 * AddStaffDialog – scoped styles
 * Shared modal classes (entral-dialog, modal-header, segmented-tabs,
 * card-number-row) are in wwwroot/css/modals.css.
 * Field spacing uses MudBlazor utility classes (mb-2) instead of custom CSS.
 */

.add-staff-description[b-i90p70kcif] {
    font-family: var(--font-family-body);
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-regular);
    line-height: var(--body-lh-md);
    color: var(--text-body, #34353b);
    margin-bottom: 16px;
}

.add-staff-contact-heading[b-i90p70kcif] {
    font-family: var(--font-family-body);
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-semibold);
    line-height: var(--body-lh-md);
    color: var(--text-heading, #28292e);
    margin: 16px 0 8px 0;
}
/* /Components/Pages/Company/CompanyStaffPage.razor.rz.scp.css */
/* Intentionally left minimal.
   CompanyStaff visual styling is centralized in wwwroot/css/shared.css
   to avoid scoped CSS conflicts with MudBlazor-rendered markup. */
/* /Components/Pages/Overview/Overview.razor.rz.scp.css */
/* ==========================================================================
   Overview page – Figma-matching styles
   Design tokens: use CSS vars from app.css and MudBlazor theme vars
   ========================================================================== */

/* Layout container */
.overview-container[b-34ss2jbqnt] {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

/* ---- Welcome section ---- */
.welcome-section[b-34ss2jbqnt] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.welcome-title[b-34ss2jbqnt] {
    font-family: var(--font-family-heading);
    font-size: var(--heading-size-h1);
    font-weight: var(--font-weight-bold);
    line-height: var(--heading-lh-h1);
    color: var(--mud-palette-text-primary);
    margin: 0;
}

.welcome-subtitle[b-34ss2jbqnt] {
    font-family: var(--font-family-heading);
    font-size: var(--heading-size-h4);
    font-weight: var(--font-weight-regular);
    line-height: var(--heading-lh-h4);
    color: rgba(40, 41, 46, 0.7);
    margin: 0;
}

/* ---- Stat cards ---- */
.stat-cards-row[b-34ss2jbqnt] {
    display: flex;
    gap: 16px;
}

.stat-card[b-34ss2jbqnt] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.15s;
    text-decoration: none;
    color: inherit;
}

.stat-card:hover[b-34ss2jbqnt] {
    transform: translateY(-2px);
}

.stat-card-dark[b-34ss2jbqnt] {
    background-color: #037472;
    border: 1px solid #02504e;
}

.stat-card-teal[b-34ss2jbqnt] {
    background-color: #1abebc;
    border: 1px solid #15aba8;
}

.stat-card-header[b-34ss2jbqnt] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 36px;
}

.stat-card-title[b-34ss2jbqnt] {
    font-family: var(--font-family-heading);
    font-size: var(--heading-size-h4);
    font-weight: var(--font-weight-bold);
    line-height: var(--heading-lh-h4);
    color: white;
}

.stat-card-arrow[b-34ss2jbqnt] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #fafafc;
    border: 1px solid var(--mud-palette-divider);
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
}

.stat-card-number[b-34ss2jbqnt] {
    font-family: var(--font-family-heading);
    font-size: 64px;
    font-weight: var(--font-weight-semibold);
    line-height: 64px;
    color: white;
}

.stat-card-subtitle[b-34ss2jbqnt] {
    font-family: var(--font-family-body);
    font-size: var(--body-size-sm);
    font-weight: var(--font-weight-semibold);
    line-height: var(--body-lh-sm);
    color: #effbfa;
}

/* ---- Content sections (two-column layout) ---- */
.content-sections[b-34ss2jbqnt] {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.content-column[b-34ss2jbqnt] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

/* ---- Section card ---- */
.section-card[b-34ss2jbqnt] {
    background: var(--mud-palette-surface);
    border: 1px solid rgba(52, 50, 57, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-header[b-34ss2jbqnt] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-header-left[b-34ss2jbqnt] {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 36px;
}

.section-icon[b-34ss2jbqnt] {
    display: flex;
    align-items: center;
    padding: 8px;
    background: rgba(246, 247, 247, 0.7);
    border: 1px solid rgba(52, 50, 57, 0.1);
    border-radius: 40px;
}

.section-title[b-34ss2jbqnt] {
    font-family: var(--font-family-heading);
    font-size: var(--heading-size-h3);
    font-weight: var(--font-weight-semibold);
    line-height: var(--heading-lh-h3);
    color: var(--mud-palette-text-primary);
}

.section-see-all[b-34ss2jbqnt] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-family-body);
    font-size: var(--body-size-xs);
    font-weight: var(--font-weight-semibold);
    line-height: var(--body-lh-xs);
    color: var(--mud-palette-text-primary);
    text-decoration: none;
    padding: 4px 6px;
    border-radius: 4px;
    min-height: 28px;
    cursor: pointer;
}

.section-see-all:hover[b-34ss2jbqnt] {
    background: rgba(0, 0, 0, 0.04);
}

.section-see-all-disabled[b-34ss2jbqnt] {
    opacity: 0.5;
    cursor: default;
}

.section-see-all-disabled:hover[b-34ss2jbqnt] {
    background: transparent;
}

/* ---- Project cards ---- */
.project-card[b-34ss2jbqnt] {
    background: rgba(246, 247, 247, 0.7);
    border: 1px solid rgba(52, 50, 57, 0.1);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    text-decoration: none;
    color: inherit;
}

.project-card:hover[b-34ss2jbqnt] {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px -2px rgba(0, 0, 0, 0.1);
}

.project-card-info[b-34ss2jbqnt] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.project-card-name-row[b-34ss2jbqnt] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-card-name[b-34ss2jbqnt] {
    font-family: var(--font-family-heading);
    font-size: var(--heading-size-h3);
    font-weight: var(--font-weight-semibold);
    line-height: var(--heading-lh-h3);
    color: var(--mud-palette-text-primary);
}

.project-chip[b-34ss2jbqnt] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    height: 20px;
    border-radius: 2px;
    font-family: var(--font-family-body);
    font-size: var(--body-size-sm);
    font-weight: var(--font-weight-semibold);
    line-height: var(--body-lh-sm);
    white-space: nowrap;
}

.project-chip-success[b-34ss2jbqnt] {
    background: rgba(90, 168, 90, 0.15);
    border: 1px solid rgba(90, 168, 90, 0.3);
    color: #549235;
}

.project-chip-default[b-34ss2jbqnt] {
    background: rgba(52, 50, 57, 0.1);
    border: 1px solid rgba(52, 50, 57, 0.15);
    color: var(--mud-palette-text-primary);
}

.project-card-detail[b-34ss2jbqnt] {
    display: flex;
    gap: 8px;
    font-family: var(--font-family-body);
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-regular);
    line-height: var(--body-lh-md);
}

.detail-label[b-34ss2jbqnt] {
    color: rgba(40, 41, 46, 0.7);
}

.detail-value[b-34ss2jbqnt] {
    color: #34353b;
}

.project-card-meta[b-34ss2jbqnt] {
    display: flex;
    gap: 16px;
    align-items: center;
}

.meta-item[b-34ss2jbqnt] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-family-body);
    font-size: var(--body-size-xs);
    font-weight: var(--font-weight-regular);
    line-height: var(--body-lh-xs);
    color: #34353b;
}

/* ---- Empty state ---- */
.empty-state-section[b-34ss2jbqnt] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 0;
}

.empty-state-icon[b-34ss2jbqnt] {
    font-size: 64px !important;
    opacity: 0.3;
    color: var(--mud-palette-text-secondary);
}

.empty-state-illustration[b-34ss2jbqnt] {
    height: 88px;
    width: auto;
    object-fit: contain;
}

.empty-state-text[b-34ss2jbqnt] {
    font-family: var(--font-family-body);
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-regular);
    line-height: var(--body-lh-md);
    color: var(--mud-palette-text-primary);
    text-align: center;
}

/* ---- Todo placeholder ---- */
.todo-placeholder[b-34ss2jbqnt] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 48px 0;
}

.todo-placeholder-img[b-34ss2jbqnt] {
    width: 181px;
    height: 88px;
}

.todo-placeholder-text[b-34ss2jbqnt] {
    font-family: var(--font-family-body);
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-regular);
    line-height: var(--body-lh-md);
    color: var(--mud-palette-text-primary);
    text-align: center;
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
    .stat-cards-row[b-34ss2jbqnt],
    .content-sections[b-34ss2jbqnt] {
        flex-direction: column;
    }
}
/* /Components/Pages/Projects/ProjectDetails/ProjectDetails.razor.rz.scp.css */
/* ==========================================================================
   ProjectDetails page – Figma-matching scoped styles
   ========================================================================== */

/* Page container */
.project-details-page[b-wleclbr1xs] {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

/* Loading spinner */
.project-details-loading[b-wleclbr1xs] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

/* ---- Breadcrumb header ---- */
.project-details-breadcrumb[b-wleclbr1xs] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 0 16px 0;
}

.breadcrumb-back-btn[b-wleclbr1xs] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--table-border-color);
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
    color: var(--text-heading);
    transition: background-color 0.15s, border-color 0.15s;
    padding: 0;
    flex-shrink: 0;
}

.breadcrumb-back-btn:hover[b-wleclbr1xs] {
    background-color: #f4f5f5;
    border-color: #ced3d3;
}

.breadcrumb-link[b-wleclbr1xs] {
    font-family: var(--font-family-body);
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-regular);
    color: #6c7280;
    text-decoration: none;
    transition: color 0.15s;
}

.breadcrumb-link:hover[b-wleclbr1xs] {
    color: #129895;
    text-decoration: underline;
}

.breadcrumb-separator[b-wleclbr1xs] {
    font-size: var(--body-size-md);
    color: #ced3d3;
    user-select: none;
}

.breadcrumb-current[b-wleclbr1xs] {
    font-family: var(--font-family-heading);
    font-size: var(--heading-size-h3);
    font-weight: var(--font-weight-semibold);
    line-height: var(--heading-lh-h3);
    color: var(--text-heading);
}
/* /Components/Pages/Projects/ProjectDetails/ProjectDetailsDocumentsTab.razor.rz.scp.css */
/* Documents tab toolbar – bordered bar matching Figma design */

.doc-toolbar[b-r8y7djvqzt] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 8px 8px 8px 16px;
    background: white;
    border: 1px solid var(--border-color, #e6ebeb);
    border-radius: 4px;
    margin-bottom: 16px;
}

.doc-toolbar-left[b-r8y7djvqzt] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.doc-toolbar-icon[b-r8y7djvqzt] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 40px;
    background: rgba(246, 247, 247, 0.7);
    border: 1px solid rgba(52, 50, 57, 0.1);
    flex-shrink: 0;
}

.doc-toolbar-title[b-r8y7djvqzt] {
    font-family: var(--font-family-body);
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-semibold);
    line-height: var(--body-lineheight-md, 20px);
    color: #28292e;
    white-space: nowrap;
}

.doc-toolbar-right[b-r8y7djvqzt] {
    display: flex;
    align-items: center;
    gap: 8px;
}
/* /Components/Pages/Projects/ProjectDetails/ProjectDetailsInformationTab.razor.rz.scp.css */
/* ==========================================================================
   ProjectDetailsInformationTab – Figma-matching scoped styles
   ========================================================================== */

/* ---- Top info cards row ---- */
.info-cards-row[b-i9t7r4rm1w] {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.info-card[b-i9t7r4rm1w] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #e6ebeb;
    border-radius: 8px;
    min-width: 0;
}

.info-card-label[b-i9t7r4rm1w] {
    font-family: var(--font-family-body);
    font-size: var(--body-size-sm);
    font-weight: var(--font-weight-semibold);
    color: #6c7280;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.info-card-content[b-i9t7r4rm1w] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-card-icon-row[b-i9t7r4rm1w] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card-icon-badge[b-i9t7r4rm1w] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 40px;
    background: rgba(246, 247, 247, 0.7);
    border: 1px solid rgba(52, 50, 57, 0.1);
    flex-shrink: 0;
}

.info-card-value[b-i9t7r4rm1w] {
    font-family: var(--font-family-body);
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-semibold);
    color: var(--text-heading);
    line-height: var(--body-lh-md);
}

.info-card-detail[b-i9t7r4rm1w] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-family-body);
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-regular);
    color: var(--text-body);
    line-height: var(--body-lh-md);
}

.info-card-subtext[b-i9t7r4rm1w] {
    font-family: var(--font-family-body);
    font-size: var(--body-size-sm);
    font-weight: var(--font-weight-regular);
    color: #6c7280;
    line-height: var(--body-lh-sm);
}

.info-card-big-number[b-i9t7r4rm1w] {
    font-family: var(--font-family-heading);
    font-size: 36px;
    font-weight: var(--font-weight-bold);
    color: var(--text-heading);
    line-height: 1;
}

/* ---- Bottom two-column section ---- */
.info-bottom-row[b-i9t7r4rm1w] {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-section-card[b-i9t7r4rm1w] {
    flex: 1;
    background: #ffffff;
    border: 1px solid #e6ebeb;
    border-radius: 8px;
    padding: 20px;
    min-width: 0;
}

.info-section-card--stretch[b-i9t7r4rm1w] {
    display: flex;
    flex-direction: column;
}

.info-section-header[b-i9t7r4rm1w] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.info-section-icon-badge[b-i9t7r4rm1w] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 40px;
    background: rgba(246, 247, 247, 0.7);
    border: 1px solid rgba(52, 50, 57, 0.1);
    flex-shrink: 0;
}

.info-section-title[b-i9t7r4rm1w] {
    font-family: var(--font-family-heading);
    font-size: var(--heading-size-h3);
    font-weight: var(--font-weight-semibold);
    line-height: var(--heading-lh-h3);
    color: var(--text-heading);
    margin: 0;
}

.info-section-divider[b-i9t7r4rm1w] {
    height: 1px;
    background: #e6ebeb;
    margin-bottom: 4px;
}

/* ---- Projektinfo key-value table ---- */
.info-table[b-i9t7r4rm1w] {
    display: flex;
    flex-direction: column;
}

.info-table-row[b-i9t7r4rm1w] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 8px;
    border-bottom: 1px solid #f3f4f4;
    gap: 16px;
}

.info-table-row:last-child[b-i9t7r4rm1w] {
    border-bottom: none;
}

.info-table-label[b-i9t7r4rm1w] {
    font-family: var(--font-family-body);
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-regular);
    color: #34353b;
    white-space: nowrap;
    flex-shrink: 0;
}

.info-table-value[b-i9t7r4rm1w] {
    font-family: var(--font-family-body);
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-semibold);
    color: var(--text-heading);
    text-align: right;
    word-break: break-word;
}

/* ---- Checkin stats ---- */
.checkin-stats-row[b-i9t7r4rm1w] {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.checkin-stat[b-i9t7r4rm1w] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 12px;
    border-radius: 8px;
}

.checkin-stat--in[b-i9t7r4rm1w] {
    background: rgba(90, 168, 90, 0.1);
}

.checkin-stat--out[b-i9t7r4rm1w] {
    background: rgba(229, 37, 96, 0.08);
}

.checkin-stat--total[b-i9t7r4rm1w] {
    background: rgba(18, 152, 149, 0.08);
}

.checkin-stat-label[b-i9t7r4rm1w] {
    font-family: var(--font-family-body);
    font-size: var(--body-size-xs);
    font-weight: var(--font-weight-semibold);
    color: #6c7280;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.checkin-stat-value[b-i9t7r4rm1w] {
    font-family: var(--font-family-heading);
    font-size: var(--heading-size-h2);
    font-weight: var(--font-weight-bold);
    color: var(--text-heading);
    line-height: 1.2;
}

.checkin-stat-unit[b-i9t7r4rm1w] {
    font-size: var(--body-size-sm);
    font-weight: var(--font-weight-regular);
    color: #6c7280;
}

/* ---- Checkin activity list ---- */
.checkin-activity-header[b-i9t7r4rm1w] {
    font-family: var(--font-family-body);
    font-size: var(--body-size-sm);
    font-weight: var(--font-weight-semibold);
    color: #6c7280;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.checkin-activity-list[b-i9t7r4rm1w] {
    display: flex;
    flex-direction: column;
}

.checkin-activity-item[b-i9t7r4rm1w] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid #f3f4f4;
}

.checkin-activity-item:last-child[b-i9t7r4rm1w] {
    border-bottom: none;
}

.checkin-activity-name[b-i9t7r4rm1w] {
    font-family: var(--font-family-body);
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-semibold);
    color: var(--text-heading);
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.checkin-activity-time[b-i9t7r4rm1w] {
    font-family: var(--font-family-body);
    font-size: var(--body-size-sm);
    color: #6c7280;
    white-space: nowrap;
}

.checkin-activity-company[b-i9t7r4rm1w] {
    font-family: var(--font-family-body);
    font-size: var(--body-size-sm);
    color: #6c7280;
    white-space: nowrap;
}

/* ---- Empty state ---- */
.checkin-empty-state[b-i9t7r4rm1w] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 48px 24px;
    flex: 1;
}

.checkin-empty-illustration[b-i9t7r4rm1w] {
    width: 154px;
    height: 88px;
    object-fit: contain;
    opacity: 0.7;
}

.checkin-empty-text[b-i9t7r4rm1w] {
    font-family: var(--font-family-body);
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-regular);
    color: #6c7280;
}
/* /Components/Pages/Projects/ProjectDetails/ProjectDetailsStaffTab.razor.rz.scp.css */
/* Staff tab toolbar – bordered bar matching Figma design */

.staff-toolbar[b-sgsqe0q8mc] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 8px 8px 8px 16px;
    background: white;
    border: 1px solid var(--border-color, #e6ebeb);
    border-radius: 4px;
    margin-bottom: 16px;
}

.staff-toolbar-left[b-sgsqe0q8mc] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.staff-toolbar-icon[b-sgsqe0q8mc] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 40px;
    background: rgba(246, 247, 247, 0.7);
    border: 1px solid rgba(52, 50, 57, 0.1);
    flex-shrink: 0;
}

.staff-toolbar-icon--warning[b-sgsqe0q8mc] {
    background: rgba(255, 152, 0, 0.1);
    border-color: rgba(255, 152, 0, 0.3);
}

.staff-toolbar-title[b-sgsqe0q8mc] {
    font-family: var(--font-family-body);
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-semibold);
    line-height: var(--body-lineheight-md, 20px);
    color: #28292e;
    white-space: nowrap;
}

.staff-toolbar-right[b-sgsqe0q8mc] {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Staff data table styles are in shared.css */

/* Chip styles are in shared.css as .mud-chip.staff-chip-neutral */

/* Table, actions styles are in shared.css */
/* /Components/Pages/Projects/ProjectDetails/ProjectDetailsSubcontractorsTab.razor.rz.scp.css */
/* ==========================================================================
   ProjectDetailsSubcontractorsTab – Figma-matching tree & card styles
   Figma: TuDDDMQG8AJHJYP7gZNdBj, node 2006:25714
   ========================================================================== */

/* ── Tree layout ── */
.subcontractors-tree[b-j141xekwik] {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* ── Tree connectors (lines between levels) ── */
.tree-branch[b-j141xekwik] {
    display: flex;
    width: 45px;
    height: 12px;
    flex-shrink: 0;
}

.tree-connector[b-j141xekwik] {
    width: 45px;
    flex-shrink: 0;
    position: relative;
}

.tree-connector--corner[b-j141xekwik] {
    height: 12px;
}

.tree-connector--corner[b-j141xekwik]::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 0;
    height: 50%;
    border-left: 1.5px solid #e6ebeb;
}

.tree-connector--corner[b-j141xekwik]::after {
    content: '';
    position: absolute;
    left: 22px;
    top: 50%;
    width: calc(100% - 22px);
    border-top: 1.5px solid #e6ebeb;
}

.tree-connector--vertical[b-j141xekwik] {
    align-self: stretch;
}

.tree-connector--vertical[b-j141xekwik]::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    border-left: 1.5px solid #e6ebeb;
}

.tree-connector--pass-through[b-j141xekwik] {
    align-self: stretch;
}

.tree-connector--pass-through[b-j141xekwik]::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    border-left: 1.5px solid #e6ebeb;
}

/* ── Row containing connector + content ── */
.tree-row[b-j141xekwik] {
    display: flex;
    gap: 16px;
    align-items: stretch;
    width: 100%;
}

.tree-row > .company-card[b-j141xekwik],
.tree-row > .subcontractor-section[b-j141xekwik] {
    flex: 1;
    min-width: 0;
}

/* ── Company card ── */
.company-card[b-j141xekwik] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    min-height: 60px;
    border: 1px solid #e6ebeb;
    border-radius: 8px;
    background: #ffffff;
    transition: box-shadow 0.15s ease;
}

.company-card:hover[b-j141xekwik] {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.company-card-left[b-j141xekwik] {
    display: flex;
    gap: 8px;
    align-items: center;
    min-width: 0;
}

.company-card-right[b-j141xekwik] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* ── Company icon (square badge) ── */
.company-icon[b-j141xekwik] {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.company-icon--primary[b-j141xekwik] {
    background: rgba(26, 190, 188, 0.1);
    border: 1px solid rgba(26, 190, 188, 0.1);
    color: #129895;
}

.company-icon--warning[b-j141xekwik] {
    background: rgba(246, 163, 29, 0.1);
    border: 1px solid rgba(246, 163, 29, 0.1);
    color: #d97706;
}

/* ── Company info text ── */
.company-info[b-j141xekwik] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.company-name-row[b-j141xekwik] {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.company-name[b-j141xekwik] {
    font-family: var(--font-family-body);
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-bold);
    line-height: var(--body-lh-md);
    color: var(--text-heading);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 280px;
}

.company-orgno[b-j141xekwik] {
    font-family: var(--font-family-body);
    font-size: var(--body-size-xs);
    font-weight: var(--font-weight-regular);
    line-height: var(--body-lh-xs);
    color: #34353b;
}

.company-admin-count[b-j141xekwik] {
    display: flex;
    align-items: center;
    gap: 4px;
}

.admin-count-icon[b-j141xekwik] {
    color: #34353b;
    font-size: 18px !important;
}

/* ── Status chips ── */
.status-chip[b-j141xekwik] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    padding: 0 6px;
    border-radius: 2px;
    font-family: var(--font-family-body);
    font-size: var(--body-size-sm);
    font-weight: var(--font-weight-semibold);
    line-height: var(--body-lh-sm);
    white-space: nowrap;
}

.status-chip--success[b-j141xekwik] {
    background: rgba(90, 168, 90, 0.15);
    border: 1px solid rgba(90, 168, 90, 0.3);
    color: #549235;
}

.status-chip--warning[b-j141xekwik] {
    background: rgba(246, 163, 29, 0.1);
    border: 1px solid rgba(246, 163, 29, 0.2);
    color: #d97706;
}

/* ── Subcontractor section ── */
.subcontractor-section[b-j141xekwik] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.subcontractor-header[b-j141xekwik] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.subcontractor-header-title[b-j141xekwik] {
    font-family: var(--font-family-body);
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-semibold);
    line-height: var(--body-lh-md);
    color: var(--text-heading);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.add-org-btn[b-j141xekwik] {
    text-transform: none !important;
}

.add-org-btn:focus-visible[b-j141xekwik] {
    outline: 2px solid rgba(18, 152, 149, 0.35);
    outline-offset: 2px;
}

.company-actions-menu :global(.mud-button-root)[b-j141xekwik] {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    border-radius: 6px;
    transition: background-color 120ms ease;
}

.company-actions-menu :global(.mud-button-root:hover)[b-j141xekwik] {
    background-color: rgba(40, 41, 46, 0.06);
}

.company-actions-menu :global(.mud-button-root:focus-visible)[b-j141xekwik] {
    outline: 2px solid rgba(18, 152, 149, 0.35);
    outline-offset: 1px;
}

.company-actions-menu :global(.mud-list-item)[b-j141xekwik] {
    min-height: 36px;
    padding-top: 6px;
    padding-bottom: 6px;
}

/* ── Invite admin link button ── */
.invite-admin-link[b-j141xekwik] {
    font-size: var(--body-size-xs) !important;
    font-weight: var(--font-weight-semibold) !important;
    color: var(--text-heading) !important;
    text-transform: none !important;
    min-width: unset !important;
    padding: 4px 6px !important;
}

.invite-admin-link:hover[b-j141xekwik] {
    background-color: rgba(40, 41, 46, 0.06) !important;
}

.invite-admin-link:focus-visible[b-j141xekwik] {
    outline: 2px solid rgba(18, 152, 149, 0.35);
    outline-offset: 2px;
}

/* /Components/Pages/Projects/Projects.razor.rz.scp.css */
/* Projects page - no scoped styles needed.
   Table styling is handled globally via shared.css (.entral-data-grid).
   Page layout uses .page-header-toolbar from shared.css. */
/* /Components/Pages/Support/Support.razor.rz.scp.css */
/* Support Page – matches Figma design (node 2211:42645) */

/* ── Root container ── */
.support-page-root[b-nxzbk13e5u] {
    max-width: 1142px;
    margin: 0 auto;
    padding: 24px 24px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ── Hero ── */
.support-hero[b-nxzbk13e5u] {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    padding: 56px 24px;
    text-align: center;
    background: url('/images/login-bg.jpg') center center / cover no-repeat;
}

.support-hero-overlay[b-nxzbk13e5u] {
    position: absolute;
    inset: 0;
    background: rgba(34, 15, 0, 0.35);
    border-radius: 8px;
}

.support-hero-content[b-nxzbk13e5u] {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.support-hero-title[b-nxzbk13e5u] {
    font-family: var(--font-family-heading);
    font-size: var(--heading-size-h1);
    font-weight: var(--font-weight-semibold);
    line-height: 40px;
    color: #fff;
    margin: 0;
}

.support-hero-subtitle[b-nxzbk13e5u] {
    font-family: var(--font-family-body);
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-semibold);
    line-height: var(--body-lh-md);
    color: #fff;
    margin: 0;
    max-width: 700px;
}

/* ── Loading / Empty ── */
.support-loading[b-nxzbk13e5u] {
    display: flex;
    justify-content: center;
    padding: 48px 0;
}

.support-empty[b-nxzbk13e5u] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 48px 24px;
    text-align: center;
}

.support-empty-text[b-nxzbk13e5u] {
    font-size: var(--body-size-md);
    color: var(--text-disabled);
    margin: 0;
}

/* ── Content area ── */
.support-content[b-nxzbk13e5u] {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 48px;
}

/* ── Section (headings) ── */
.support-section[b-nxzbk13e5u] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.support-section-title[b-nxzbk13e5u] {
    font-family: var(--font-family-heading);
    font-size: var(--heading-size-h4);
    font-weight: var(--font-weight-semibold);
    line-height: 24px;
    color: var(--text-heading);
    margin: 0;
}

/* ── Category cards grid ── */
.support-categories-grid[b-nxzbk13e5u] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.support-category-card[b-nxzbk13e5u] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--border-02, #e6ebeb);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.support-category-card:hover[b-nxzbk13e5u] {
    border-color: var(--color-primary, #129895);
    box-shadow: 0 2px 8px rgba(18, 152, 149, 0.08);
}

.support-category-card.selected[b-nxzbk13e5u] {
    border-color: var(--color-primary, #129895);
    box-shadow: 0 2px 8px rgba(18, 152, 149, 0.12);
    background: rgba(18, 152, 149, 0.04);
}

.support-category-icon-box[b-nxzbk13e5u] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-02, #e6ebeb);
    border-radius: 8px;
    flex-shrink: 0;
    color: var(--text-heading);
}

.support-category-card-body[b-nxzbk13e5u] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.support-category-card-name[b-nxzbk13e5u] {
    font-family: var(--font-family-body);
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-semibold);
    line-height: var(--body-lh-md);
    color: var(--text-heading);
}

.support-category-card-desc[b-nxzbk13e5u] {
    font-family: var(--font-family-body);
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-regular);
    line-height: var(--body-lh-md);
    color: var(--text-heading);
    opacity: 0.6;
}

.support-category-card-count[b-nxzbk13e5u] {
    font-family: var(--font-family-body);
    font-size: var(--body-size-sm);
    font-weight: var(--font-weight-regular);
    line-height: var(--body-lh-sm);
    color: var(--text-disabled, rgba(40, 41, 46, 0.7));
    opacity: 0.6;
}

/* ── Article rows ── */
.support-articles-list[b-nxzbk13e5u] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.support-article-row[b-nxzbk13e5u] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--border-02, #e6ebeb);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.support-article-row:hover[b-nxzbk13e5u] {
    border-color: var(--color-primary, #129895);
    box-shadow: 0 2px 8px rgba(18, 152, 149, 0.08);
}

.support-article-info[b-nxzbk13e5u] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.support-article-title[b-nxzbk13e5u] {
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-semibold);
    color: var(--text-heading);
    line-height: var(--body-lh-md);
}

.support-article-desc[b-nxzbk13e5u] {
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-regular);
    color: var(--text-heading);
    opacity: 0.6;
    line-height: var(--body-lh-md);
}

.support-article-arrow[b-nxzbk13e5u] {
    flex-shrink: 0;
    color: var(--text-disabled, rgba(40, 41, 46, 0.4));
    transition: color 0.2s, transform 0.2s;
}

.support-article-row:hover .support-article-arrow[b-nxzbk13e5u] {
    color: var(--color-primary, #129895);
    transform: translateX(2px);
}

/* ── Contact section ── */
.support-contact[b-nxzbk13e5u] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 16px;
    border-radius: 8px;
}

.support-contact-title[b-nxzbk13e5u] {
    font-family: var(--font-family-heading);
    font-size: var(--heading-size-h3);
    font-weight: var(--font-weight-semibold);
    line-height: 28px;
    color: var(--text-heading);
    margin: 0;
}

.support-contact-text[b-nxzbk13e5u] {
    font-family: var(--font-family-body);
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-regular);
    line-height: var(--body-lh-md);
    color: var(--text-heading);
    margin: 4px 0 0;
    text-align: center;
}

.support-contact-text a[b-nxzbk13e5u] {
    color: var(--color-primary, #129895);
    text-decoration: none;
    font-weight: var(--font-weight-regular);
}

.support-contact-text a:hover[b-nxzbk13e5u] {
    text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .support-categories-grid[b-nxzbk13e5u] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .support-page-root[b-nxzbk13e5u] {
        padding: 0 16px;
    }

    .support-hero[b-nxzbk13e5u] {
        padding: 32px 16px;
    }

    .support-hero-title[b-nxzbk13e5u] {
        font-size: 24px;
    }

    .support-categories-grid[b-nxzbk13e5u] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/Support/SupportArticle.razor.rz.scp.css */
/* Support Article Page Styles */
.support-container[b-c3cognumfu] {
    max-width: 800px;
    margin: 0 auto;
    padding: 32px 24px 64px;
}

/* Breadcrumb navigation */
.support-breadcrumb[b-c3cognumfu] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 24px;
}

.support-breadcrumb a[b-c3cognumfu] {
    color: #129895;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.support-breadcrumb a:hover[b-c3cognumfu] {
    text-decoration: underline;
}

.support-breadcrumb .bi-chevron-right[b-c3cognumfu] {
    font-size: 12px;
    color: #9ca3af;
}

.support-breadcrumb span:last-child[b-c3cognumfu] {
    color: #6b7280;
}

.breadcrumb-category[b-c3cognumfu] {
    color: #129895;
    font-weight: 500;
}

/* Article links (inserted via editor) */
.support-article-content[b-c3cognumfu]  .article-link {
    color: #129895;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dashed #129895;
    transition: border-bottom-color 0.2s;
}

.support-article-content[b-c3cognumfu]  .article-link:hover {
    border-bottom-style: solid;
}

/* Loading state */
.support-loading[b-c3cognumfu] {
    display: flex;
    justify-content: center;
    padding: 64px 0;
}

/* Not found state */
.support-not-found[b-c3cognumfu] {
    text-align: center;
    padding: 64px 24px;
}

.support-not-found .bi[b-c3cognumfu] {
    font-size: 64px;
    color: #e5e7eb;
    display: block;
    margin-bottom: 16px;
}

.support-not-found h1[b-c3cognumfu] {
    font-size: var(--heading-size-h2);
    font-weight: var(--font-weight-semibold);
    color: var(--text-heading);
    margin: 0 0 8px 0;
}

.support-not-found p[b-c3cognumfu] {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 24px 0;
}

.support-not-found a[b-c3cognumfu] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #129895;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: var(--font-weight-regular);
    transition: background 0.2s;
}

.support-not-found a:hover[b-c3cognumfu] {
    background: #0d7a78;
}

/* Article */
.support-article[b-c3cognumfu] {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Article header */
.support-article-header[b-c3cognumfu] {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e6ebeb;
}

.support-article-header h1[b-c3cognumfu] {
    font-size: var(--heading-size-h1);
    font-weight: var(--font-weight-semibold);
    color: var(--text-heading);
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.support-article-description[b-c3cognumfu] {
    font-size: var(--body-size-lg);
    color: #6b7280;
    margin: 0;
}

/* Article content - rendered HTML */
.support-article-content[b-c3cognumfu] {
    font-size: var(--body-size-lg);
    line-height: var(--body-lh-lg);
    color: #374151;
}

.support-article-content[b-c3cognumfu]  h2 {
    font-size: var(--heading-size-h2);
    font-weight: var(--font-weight-semibold);
    color: var(--text-heading);
    margin: 32px 0 16px 0;
}

.support-article-content[b-c3cognumfu]  h3 {
    font-size: var(--heading-size-h3);
    font-weight: var(--font-weight-semibold);
    color: var(--text-heading);
    margin: 24px 0 12px 0;
}

.support-article-content[b-c3cognumfu]  h4 {
    font-size: var(--heading-size-h4);
    font-weight: var(--font-weight-semibold);
    color: var(--text-heading);
    margin: 20px 0 10px 0;
}

.support-article-content[b-c3cognumfu]  p {
    margin: 0 0 16px 0;
}

.support-article-content[b-c3cognumfu]  ul,
.support-article-content[b-c3cognumfu]  ol {
    margin: 0 0 16px 0;
    padding-left: 24px;
}

.support-article-content[b-c3cognumfu]  li {
    margin-bottom: 8px;
}

.support-article-content[b-c3cognumfu]  a {
    color: #129895;
    text-decoration: none;
}

.support-article-content[b-c3cognumfu]  a:hover {
    text-decoration: underline;
}

.support-article-content[b-c3cognumfu]  img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 16px 0;
    border: 1px solid #e6ebeb;
}

.support-article-content[b-c3cognumfu]  blockquote {
    margin: 16px 0;
    padding: 16px 20px;
    background: #f9fafb;
    border-left: 4px solid #129895;
    border-radius: 0 8px 8px 0;
}

.support-article-content[b-c3cognumfu]  blockquote p:last-child {
    margin-bottom: 0;
}

.support-article-content[b-c3cognumfu]  code {
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 14px;
}

.support-article-content[b-c3cognumfu]  pre {
    background: #1f2937;
    color: #f9fafb;
    padding: 16px 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 16px 0;
}

.support-article-content[b-c3cognumfu]  pre code {
    background: transparent;
    padding: 0;
    color: inherit;
}

.support-article-content[b-c3cognumfu]  table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.support-article-content[b-c3cognumfu]  th,
.support-article-content[b-c3cognumfu]  td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e6ebeb;
}

.support-article-content[b-c3cognumfu]  th {
    font-weight: var(--font-weight-semibold);
    color: var(--text-heading);
    background: #f9fafb;
}

.support-article-content[b-c3cognumfu]  hr {
    border: none;
    border-top: 1px solid #e6ebeb;
    margin: 32px 0;
}

/* Navigation footer */
.support-article-nav[b-c3cognumfu] {
    display: flex;
    justify-content: space-between;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #e6ebeb;
}

.support-nav-prev[b-c3cognumfu],
.support-nav-next[b-c3cognumfu] {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #129895;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 8px;
    transition: background 0.2s;
}

.support-nav-prev:hover[b-c3cognumfu],
.support-nav-next:hover[b-c3cognumfu] {
    background: #f5f7fa;
}

.support-nav-prev span:last-child[b-c3cognumfu],
.support-nav-next span:first-child[b-c3cognumfu] {
    display: flex;
    flex-direction: column;
}

.support-nav-prev small[b-c3cognumfu],
.support-nav-next small[b-c3cognumfu] {
    font-size: 12px;
    color: #9ca3af;
}

.support-nav-prev strong[b-c3cognumfu],
.support-nav-next strong[b-c3cognumfu] {
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-semibold);
}

/* Responsive */
@media (max-width: 768px) {
    .support-container[b-c3cognumfu] {
        padding: 24px 16px 48px;
    }

    .support-article[b-c3cognumfu] {
        padding: 24px 16px;
        border-radius: 0;
    }

    .support-article-header h1[b-c3cognumfu] {
        font-size: 24px;
    }

    .support-article-content[b-c3cognumfu] {
        font-size: 15px;
    }

    .support-article-content[b-c3cognumfu]  h2 {
        font-size: 20px;
    }

    .support-article-content[b-c3cognumfu]  h3 {
        font-size: 18px;
    }

    .support-article-nav[b-c3cognumfu] {
        flex-direction: column;
        gap: 12px;
    }
}
/* /Components/Shared/LanguageSelector.razor.rz.scp.css */
/* Select-style variant for login page */
.language-select-menu[b-c8592l5xa8] {
    min-width: 140px;
}

/* Override MudBlazor uppercase for all buttons in this component */
[b-c8592l5xa8] .mud-button-label {
    text-transform: none;
}

/* Flag button styling */
[b-c8592l5xa8] .language-flag-button {
    min-width: auto;
    padding: 6px 12px;
}

/* Flag icon sizing */
[b-c8592l5xa8] .fi {
    font-size: 20px;
    border-radius: 2px;
}
/* /Components/Shared/Modals/PreregisterPersonModal.razor.rz.scp.css */
/* PreregisterPersonModal – all styles in shared.css per conventions */
/* /Components/Shared/Modals/SelectArticleLinkModal.razor.rz.scp.css */
.modal-overlay[b-t415hopksd] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content[b-t415hopksd] {
    background: white;
    border-radius: 12px;
    width: 560px;
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.modal-header[b-t415hopksd] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e6ebeb;
}

.modal-header h3[b-t415hopksd] {
    margin: 0;
    font-size: var(--heading-size-h4);
    font-weight: var(--font-weight-semibold);
    color: #28292e;
}

.modal-close[b-t415hopksd] {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    color: #6b7280;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
}

.modal-close:hover[b-t415hopksd] {
    background: #f3f4f6;
    color: #28292e;
}

.modal-body[b-t415hopksd] {
    padding: 20px 24px;
    overflow-y: auto;
    flex: 1;
}

/* Search and filter */
.search-filters[b-t415hopksd] {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.search-input-wrapper[b-t415hopksd] {
    flex: 1;
    position: relative;
}

.search-icon[b-t415hopksd] {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: var(--body-size-md);
    pointer-events: none;
}

.search-input[b-t415hopksd] {
    width: 100%;
    padding: 9px 12px 9px 36px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: var(--body-size-md);
    background: white;
    box-sizing: border-box;
}

.search-input:focus[b-t415hopksd] {
    outline: none;
    border-color: #129895;
    box-shadow: 0 0 0 3px rgba(18, 152, 149, 0.15);
}

.category-filter[b-t415hopksd] {
    min-width: 160px;
    padding: 9px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: var(--body-size-md);
    background: white;
    cursor: pointer;
}

.category-filter:focus[b-t415hopksd] {
    outline: none;
    border-color: #129895;
    box-shadow: 0 0 0 3px rgba(18, 152, 149, 0.15);
}

/* Loading & empty states */
.modal-loading[b-t415hopksd],
.no-results[b-t415hopksd] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: #9ca3af;
}

.no-results .bi[b-t415hopksd] {
    font-size: 36px;
    margin-bottom: 12px;
}

.no-results p[b-t415hopksd] {
    margin: 0;
    font-size: var(--body-size-md);
}

/* Article list */
.article-list[b-t415hopksd] {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 320px;
    overflow-y: auto;
    border: 1px solid #e6ebeb;
    border-radius: 8px;
}

.article-item[b-t415hopksd] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    border: none;
    border-bottom: 1px solid #f3f4f6;
    background: white;
    cursor: pointer;
    transition: background 0.15s;
    text-align: left;
    width: 100%;
    font-family: inherit;
}

.article-item:last-child[b-t415hopksd] {
    border-bottom: none;
}

.article-item:hover[b-t415hopksd] {
    background: #f9fafb;
}

.article-item.selected[b-t415hopksd] {
    background: #e8f7f7;
}

.article-item-left[b-t415hopksd] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.article-item-title[b-t415hopksd] {
    font-weight: var(--font-weight-regular);
    font-size: var(--body-size-md);
    color: #28292e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-item-slug[b-t415hopksd] {
    font-size: var(--body-size-sm);
    color: #9ca3af;
    font-family: monospace;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-item-category[b-t415hopksd] {
    flex-shrink: 0;
    font-size: var(--body-size-sm);
    color: #129895;
    background: #e8f7f7;
    padding: 3px 10px;
    border-radius: 12px;
    white-space: nowrap;
    font-weight: var(--font-weight-regular);
}

/* Footer */
.modal-footer[b-t415hopksd] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 24px;
    border-top: 1px solid #e6ebeb;
}

.modal-footer .btn[b-t415hopksd] {
    padding: 9px 20px;
    border-radius: 8px;
    font-size: var(--body-size-md);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.15s, border-color 0.15s;
}

.modal-footer .btn-secondary[b-t415hopksd] {
    background: white;
    border: 1px solid #d1d5db;
    color: #374151;
}

.modal-footer .btn-secondary:hover[b-t415hopksd] {
    background: #f9fafb;
    border-color: #9ca3af;
}

.modal-footer .btn-primary[b-t415hopksd] {
    background: #129895;
    border: 1px solid #129895;
    color: white;
}

.modal-footer .btn-primary:hover:not(:disabled)[b-t415hopksd] {
    background: #0e7c7a;
    border-color: #0e7c7a;
}

.modal-footer .btn-primary:disabled[b-t415hopksd] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 640px) {
    .search-filters[b-t415hopksd] {
        flex-direction: column;
    }

    .category-filter[b-t415hopksd] {
        min-width: unset;
    }
}
/* /Components/Shared/SubContractorAdminInviteForm.razor.rz.scp.css */
/* SubContractorAdminInviteForm styles - handled by MudBlazor components */
/* /Components/Shared/TenantSelector.razor.rz.scp.css */
/* TenantSelector styles - handled by MudSelect */
