/* FileRoom brand palette — sourced from SP_SurePrepProjects/FileRoom/FileroomDashboardMerging/Content/. */
:root {
    --primary:        #18b86b;
    --primary-dark:   #15a15e;
    --primary-light:  #e6f7ed;
    --bg-soft:        #f2f2ed;
    --border-soft:    #e0e0e0;
    --text:           #1a1a1a;
    --text-muted:     #666;
    --accent-blue:    #2366a0;
    --accent-blue-bg: #dbe4fa;
    --error:          #c62828;
    --error-bg:       #ffebee;
    --error-border:   #ef9a9a;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    font-family: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-soft);
    color: var(--text);
}

/* Used by Razor markup that previously inlined `style="display:none"`. CSP blocks inline styles. */
.hidden { display: none; }

/* Visually hidden but kept in the AT tree (screen readers still read it). Used for the
   #a11y-status aria-live region — readable to NVDA/JAWS but invisible to sighted users. */
.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
