/* =========================================================
FILE: web/css/style.css
STATUS: refăcut / consolidat / pregătit pentru server real
ROLE: stil global unic pentru homepage, auth, dashboards și infrastructura web The-ABC.ro
FACE:
- păstrează baza vizuală comună pentru website-ul public și zonele deja active
- susține homepage-ul nou legat la cele 4 foldere finale de account/request
- păstrează compatibilitatea cu client_dashboard, partner_dashboard și admin fără structură paralelă
- menține stilul compact, curat și extensibil pentru viitor
NU FACE:
- nu introduce logică de localhost sau dependențe de Windows
- nu dublează foi de stil pe module paralele
- nu schimbă singur structura PHP existentă în alte foldere
INPUT:
- markup-ul randat din index.php, auth, dashboards, admin și modulele shared existente
OUTPUT:
- interfață coerentă, compactă și pregătită pentru extindere
STARE: complet / live-ready / extensibil
========================================================= */

/* =========================================================
FILE: /server/The-ABC/web\static\css\style.css
STATUS: modificat / extras și consolidat
ROLE: stil global unic pentru paginile index, backend, control panel și dashboard client din proiectul The ABC
FACE:
- păstrează infrastructura vizuală comună a website-ului
- păstrează header-ul curat, footer-ul comun și navigatorul separat sub header
- păstrează formularul Client Request compact și stabil pe 3 step-uri
- adaugă suport vizual real pentru backend, control panel și dashboard client
- susține cardul 24/7 phone line și cardul footer Assistant Breakdown Cover
- păstrează compatibilitatea cu modulele shared și cu fișierele administrative actualizate
NU FACE:
- nu separă CSS pe module individuale
- nu mută backend-ul în control panel
- nu schimbă singur structura HTML reală
- nu introduce popup intern de limbă
INPUT:
- elementele HTML existente în index.html, backend.html, control_panel.html și client_dashboard.html
- markup-ul randat din index.js, control_panel.js, client_dashboard.js și modulele administrative
OUTPUT:
- interfață unificată, clară, compactă și stabilă pentru toată infrastructura web actuală
STARE: complet / pregătit pentru extindere
========================================================= */

/* =========================================================
CONTEXT / SCOP
=========================================================
Acest fișier este sursa vizuală unică pentru The ABC.

INCEPUT:
- a pornit pentru index și backend într-o formă curată și compactă
- a păstrat header, navigator și footer comune

PREZENT:
- acoperă index, backend, control panel și dashboard client
- susține formularele reale, cardurile de stare, zonele administrative și listele generate din JS
- elimină rupturile dintre pagini și coordinatorii existenți

VIITOR:
- poate primi extinderi doar pe structura existentă
- poate susține MySQL, login, dashboard și control panel mai mari fără rescriere totală
========================================================= */

/* =========================================================
CONFIGURAȚIE DE BAZĂ
========================================================= */
:root {
    --bg-main: #0b1220;
    --bg-soft: #121a2b;
    --bg-panel: rgba(24, 34, 52, 0.94);
    --bg-card: rgba(11, 18, 32, 0.48);
    --bg-input: rgba(11, 18, 32, 0.82);
    --line: #273446;
    --line-soft: rgba(72, 92, 118, 0.62);
    --text-main: #e8edf5;
    --text-soft: #9aa8bc;
    --text-dim: #7f8ea6;
    --accent: #4a7cf3;
    --accent-hover: #3b6ee8;
    --accent-soft: rgba(74, 124, 243, 0.15);
    --ok-bg: #13291b;
    --ok-text: #98e3ad;
    --warn-bg: #332112;
    --warn-text: #f0b27a;
    --danger-bg: rgba(207, 93, 93, 0.12);
    --danger-text: #ff9b9b;
    --shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
    --shadow-soft: 0 8px 20px rgba(0, 0, 0, 0.18);
    --radius-main: 16px;
    --radius-soft: 12px;
    --radius-pill: 999px;
    --page-max: 1080px;
}

/* =========================================================
RESET + BAZĂ GLOBALĂ
========================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(74, 124, 243, 0.08), transparent 24%),
        radial-gradient(circle at bottom right, rgba(154, 168, 188, 0.06), transparent 20%),
        var(--bg-main);
    color: var(--text-main);
}

a,
button,
input,
select,
textarea {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
}

img,
svg {
    max-width: 100%;
}

[hidden] {
    display: none !important;
}

/* =========================================================
LAYOUT GLOBAL
========================================================= */
.page-shell {
    width: 100%;
    max-width: var(--page-max);
    margin: 0 auto;
    padding: 12px;
}

.compact-page {
    max-width: var(--page-max);
}

.compact-index-page {
    padding-top: 10px;
}

.backend-page,
.control-panel-page {
    padding-top: 12px;
}

.panel {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-main);
    background: var(--bg-panel);
    box-shadow: var(--shadow);
}

.compact-panel {
    padding: 14px;
}

.site-header,
.navigator-panel,
.navigator_panel,
.clean-main-panel,
.technical-panel,
.site-footer {
    margin-bottom: 12px;
}

.clean-main-panel {
    overflow: hidden;
}

.section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.compact-section-head h1,
.compact-section-head h2,
.compact-section-head h3 {
    margin: 0 0 6px 0;
    line-height: 1.2;
}

.compact-section-head h1 {
    font-size: 28px;
}

.compact-section-head h2 {
    font-size: 20px;
}

.compact-section-head h3 {
    font-size: 18px;
}

.compact-section-head p {
    margin: 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.45;
}

.align-right {
    text-align: right;
}

/* =========================================================
HEADER GLOBAL
========================================================= */
.control-visual-head {
    align-items: flex-start;
}

.site-title {
    margin: 0;
    font-size: clamp(24px, 4vw, 30px);
    font-weight: 800;
    line-height: 1.15;
}

.site-page-label {
    color: var(--text-soft);
    font-size: 14px;
}

.header-side-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: min(100%, 320px);
}

.time-box,
.header-contact-card,
.language-switcher-card {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-soft);
    background: var(--bg-card);
}

.time-label,
.header-contact-kicker,
.language-switcher-label,
.language-switcher-label-helper {
    display: block;
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.4;
}

.time-label,
.header-contact-kicker,
.language-switcher-label {
    margin-bottom: 6px;
}

.time-value {
    display: block;
    color: var(--text-main);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    word-break: break-word;
}

.header-contact-link {
    display: inline-block;
    color: #9bb7ff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.header-contact-link:hover,
.header-contact-link:focus-visible {
    color: #c3d3ff;
    text-decoration: underline;
}

.language-switcher-field {
    display: block;
}

.language-switcher-select {
    width: 100%;
    min-height: 42px;
    padding: 9px 11px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--bg-input);
    color: var(--text-main);
    outline: none;
}

.language-switcher-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(74, 124, 243, 0.26);
}

/* =========================================================
NAVIGATOR GLOBAL
========================================================= */
.navigator-head-main {
    min-width: 0;
}

.navigator-panel .section-head {
    margin-bottom: 12px;
}

.navigator-bar,
.routes-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.navigator-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
}

.route-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(11, 18, 32, 0.34);
    color: var(--text-main);
    font-size: 14px;
    line-height: 1.45;
    text-decoration: none;
    word-break: break-word;
    transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.route-item:hover,
.route-item:focus-visible {
    border-color: rgba(126, 162, 255, 0.34);
    background: rgba(74, 124, 243, 0.14);
    transform: translateY(-1px);
}

.route-link:hover,
.route-link:focus-visible {
    text-decoration: underline;
}

.navigator-status {
    flex-shrink: 0;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    border: 1px solid transparent;
}

.status-ok {
    background: var(--ok-bg);
    color: var(--ok-text);
    border-color: rgba(152, 227, 173, 0.15);
}

.status-warn {
    background: var(--warn-bg);
    color: var(--warn-text);
    border-color: rgba(240, 178, 122, 0.15);
}

/* =========================================================
ZONE CURATE + BACKEND TEHNIC
========================================================= */
.clean-page-zone {
    min-height: 46vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
}

.clean-page-title {
    margin: 0;
    font-size: clamp(38px, 7vw, 72px);
    font-weight: 800;
    letter-spacing: 1px;
}

.info-stack,
.backend-info-stack {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card {
    min-width: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(11, 18, 32, 0.34);
}

.info-card strong {
    display: block;
    font-size: 18px;
    line-height: 1.3;
}

.info-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-soft);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.info-link {
    display: inline-block;
    color: #9bb7ff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    word-break: break-word;
}

.info-link:hover,
.info-link:focus-visible {
    color: #c3d3ff;
    text-decoration: underline;
}

.system-map-box {
    min-height: 120px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(11, 18, 32, 0.34);
    color: var(--text-soft);
    white-space: pre-wrap;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.technical-panel .routes-box {
    margin-top: 10px;
}

/* =========================================================
FOOTER GLOBAL
========================================================= */
.site-footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 16px;
    align-items: center;
}

.site-footer-left,
.site-footer-center,
.site-footer-right-spacer {
    min-width: 0;
}

.site-footer-right-spacer {
    min-height: 1px;
}

.site-footer-title {
    margin: 0 0 10px 0;
    font-size: 20px;
    line-height: 1.2;
}

.site-footer-summary-card {
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(11, 18, 32, 0.34);
}

.site-footer-summary-kicker {
    display: block;
    margin-bottom: 6px;
    color: #b9cbff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.site-footer-summary-text {
    margin: 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.55;
}

.site-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 8px;
    color: var(--text-soft);
    text-align: center;
    font-size: 13px;
    line-height: 1.5;
}

.site-footer-links a {
    color: var(--text-main);
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible {
    color: #c3d3ff;
    text-decoration: underline;
}

.site-footer-bullet,
.site-footer-copyright {
    color: var(--text-dim);
}

/* =========================================================
FORMULAR GENERAL CLIENT REQUEST
========================================================= */
.client-request-preview {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 18px;
}

.client-request-preview:last-child {
    margin-bottom: 0;
}

.client-request-preview-head {
    margin-bottom: 0;
}

.client-request-form-preview {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.client-request-card {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(11, 18, 32, 0.38);
}

.client-request-card-head {
    margin-bottom: 12px;
}

.client-request-card-head h3 {
    margin: 0 0 6px 0;
    font-size: 20px;
    line-height: 1.25;
}

.client-request-card-head p {
    margin: 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.45;
}

.client-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.client-form-grid.compact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.client-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.client-form-field span {
    color: var(--text-main);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.client-form-field input,
.client-form-field select,
.client-form-field textarea {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--bg-input);
    color: var(--text-main);
    outline: none;
}

.client-form-grid.compact-grid .client-form-field input,
.client-form-grid.compact-grid .client-form-field select,
.client-form-grid.compact-grid .client-form-field textarea {
    min-height: 42px;
    padding: 9px 11px;
}

.client-form-field textarea {
    min-height: 96px;
    resize: vertical;
}

.client-form-field input::placeholder,
.client-form-field textarea::placeholder {
    color: var(--text-dim);
}

.client-form-field input:focus,
.client-form-field select:focus,
.client-form-field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(74, 124, 243, 0.25);
}

.readonly-field input,
.readonly-field textarea,
input[readonly],
textarea[readonly] {
    color: var(--text-soft);
    background: rgba(14, 21, 35, 0.92);
}

.readonly-field input[readonly],
.readonly-field textarea[readonly] {
    cursor: default;
}

.required-mark {
    color: #ff8f8f;
    font-style: normal;
    margin-left: 4px;
}

.optional-mark {
    color: var(--text-soft);
    font-style: normal;
    font-weight: 600;
    margin-left: 4px;
}

.hidden-dynamic {
    display: none !important;
}

.field-span-2 {
    grid-column: span 2;
}

.field-span-3 {
    grid-column: span 3;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(126, 162, 255, 0.25);
    background: rgba(74, 124, 243, 0.14);
    color: #a9c1ff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.client-form-field .field-error {
    display: none;
    margin-top: -1px;
    color: var(--danger-text);
    font-size: 12px;
    line-height: 1.35;
}

.client-form-field input.is-invalid,
.client-form-field select.is-invalid,
.client-form-field textarea.is-invalid {
    border-color: #cf5d5d;
    box-shadow: 0 0 0 1px rgba(207, 93, 93, 0.18);
}

.phone-inline-shell {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) minmax(180px, 220px);
    gap: 10px;
    width: 100%;
}

.phone-inline-shell input {
    margin: 0;
}

.phone-side-input {
    text-align: center;
}

.phone-main-input,
.phone-country-input {
    text-align: left;
}

.phone-field-shell {
    width: 100%;
}

/* =========================================================
CONTROL PANEL + ADMIN ZONE
========================================================= */
.control-panel-main {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.control-summary-grid .info-card {
    min-height: 96px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.control-panel-record,
.control-panel-entity-card,
.client-request-admin-item,
.dashboard-client-request-card {
    display: block;
    width: 100%;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(11, 18, 32, 0.34);
    box-shadow: var(--shadow-soft);
}

.control-panel-record strong,
.control-panel-entity-card strong,
.client-request-admin-item strong,
.dashboard-client-request-card strong {
    display: inline-block;
    margin-bottom: 6px;
    color: var(--text-main);
    font-size: 15px;
    line-height: 1.35;
}

.control-panel-record span,
.control-panel-entity-card span,
.client-request-admin-item span {
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.45;
}

.control-panel-record-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.control-panel-record-actions .route-item {
    min-height: 34px;
    padding: 8px 10px;
}

#clientRequestAdminContainer,
#emergencyClientRequestAdminContainer,
#vehicleAdminContainer,
#driverAdminContainer,
#databaseMonitorContainer {
    display: grid;
    gap: 10px;
}

#mysqlConnectionStatus,
#mysqlLastSync,
#mysqlTotalRecords,
#standardRequestsCount,
#emergencyRequestsCount,
#registeredClientsCount,
#databaseStatusText {
    font-size: 22px;
}

/* =========================================================
DASHBOARD CLIENT
========================================================= */
.dashboard-client-request-card {
    margin-bottom: 10px;
}

.dashboard-client-request-card:last-child {
    margin-bottom: 0;
}

.dashboard-client-request-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.dashboard-client-request-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    background: var(--accent-soft);
    border: 1px solid rgba(126, 162, 255, 0.22);
    color: #b9cbff;
    font-size: 12px;
    font-weight: 700;
}

.dashboard-client-request-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.dashboard-client-request-meta div {
    padding: 10px 12px;
    border: 1px solid var(--line-soft);
    border-radius: 10px;
    background: rgba(16, 24, 38, 0.72);
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.5;
}

.dashboard-client-request-meta span,
.dashboard-client-request-extra span {
    color: var(--text-main);
    font-weight: 700;
}

.dashboard-client-request-extra {
    margin: 10px 0 0 0;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.55;
}

[data-dashboard-client-password-message],
#dashboardPasswordMessage {
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(11, 18, 32, 0.48);
    color: var(--text-soft);
    border: 1px solid var(--line);
}

[data-dashboard-client-empty-state] {
    margin-top: 10px;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.5;
}

/* =========================================================
UTILITARE GENERALE PENTRU RANDĂRI DIN JS
========================================================= */
pre,
code {
    font-family: Consolas, "Courier New", monospace;
}

pre {
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
}

.system-map-box > .route-item,
.system-map-box > .control-panel-record,
.system-map-box > .control-panel-entity-card,
.system-map-box > .client-request-admin-item,
.system-map-box > .dashboard-client-request-card {
    margin-bottom: 10px;
}

.system-map-box > *:last-child {
    margin-bottom: 0;
}


/* =========================================================
CONTROL PANEL + DASHBOARD EXTINS – CLASE NOI COMPATIBILE
========================================================= */
.dashboard-grid {
    display: grid;
    gap: 12px;
}

.stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.two-column-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.control-panel-overview-grid,
.control-panel-database-grid,
.control-panel-lists-grid,
.dashboard-info-grid,
.dashboard-request-summary-grid {
    width: 100%;
}

.stat-card,
.dashboard-info-card,
.admin-content-box {
    min-width: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(11, 18, 32, 0.34);
    box-shadow: var(--shadow-soft);
}

.stat-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 96px;
}

.stat-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-soft);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.stat-value {
    display: block;
    color: var(--text-main);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
    word-break: break-word;
}

.action-section-head {
    align-items: center;
}

.action-button-group,
.client-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.button,
.button-primary,
.button-secondary,
.primary-button,
.secondary-button,
.danger-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: rgba(11, 18, 32, 0.34);
    color: var(--text-main);
    font-size: 14px;
    line-height: 1.45;
    transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.button:hover,
.button-primary:hover,
.button-secondary:hover,
.primary-button:hover,
.secondary-button:hover,
.danger-button:hover,
.button:focus-visible,
.button-primary:focus-visible,
.button-secondary:focus-visible,
.primary-button:focus-visible,
.secondary-button:focus-visible,
.danger-button:focus-visible {
    border-color: rgba(126, 162, 255, 0.34);
    background: rgba(74, 124, 243, 0.14);
    transform: translateY(-1px);
}

.button-primary,
.primary-button {
    background: rgba(74, 124, 243, 0.16);
    border-color: rgba(74, 124, 243, 0.35);
}

.button-secondary,
.secondary-button {
    background: rgba(16, 24, 38, 0.82);
}

.danger-button {
    background: rgba(207, 93, 93, 0.12);
    border-color: rgba(207, 93, 93, 0.28);
    color: var(--danger-text);
}

.empty-state {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.5;
}

.dashboard-client-layout {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.readonly-output {
    display: block;
    min-height: 20px;
    color: var(--text-main);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    word-break: break-word;
}

.readonly-note {
    display: block;
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.45;
}

.dashboard-password-message {
    margin: 0;
}

.dashboard-request-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dashboard-empty-state {
    margin: 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.5;
}

.dashboard-client-request-list {
    display: grid;
    gap: 10px;
}

/* =========================================================
RESPONSIVE
========================================================= */
@media (max-width: 980px) {
    .client-form-grid.compact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .field-span-3 {
        grid-column: span 2;
    }

    .phone-inline-shell {
        grid-template-columns: 110px minmax(0, 1fr);
    }

    .phone-country-input {
        grid-column: span 2;
    }

    .site-footer-main {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .site-footer-links {
        justify-content: flex-start;
        text-align: left;
    }
}

@media (max-width: 900px) {
    .section-head {
        flex-direction: column;
        align-items: stretch;
    }

    .stats-grid,
    .two-column-grid,
    .dashboard-info-grid,
    .dashboard-request-summary-grid {
        grid-template-columns: 1fr;
    }

    .align-right {
        text-align: left;
    }

    .header-side-stack,
    .time-box,
    .header-contact-card,
    .language-switcher-card,
    .site-footer-summary-card {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }

    .backend-info-stack,
    .info-stack,
    .dashboard-client-request-meta {
        grid-template-columns: 1fr;
    }

    .client-form-grid {
        grid-template-columns: 1fr;
    }

    .field-span-2,
    .field-span-3 {
        grid-column: span 1;
    }
}

@media (max-width: 720px) {
    .client-form-grid.compact-grid {
        grid-template-columns: 1fr;
    }

    .phone-inline-shell {
        grid-template-columns: 1fr;
    }

    .phone-country-input {
        grid-column: span 1;
    }

    .dashboard-client-request-card-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .page-shell {
        padding: 10px;
    }

    .action-button-group,
    .client-form-actions {
        flex-direction: column;
    }

    .button,
    .button-primary,
    .button-secondary,
    .primary-button,
    .secondary-button,
    .danger-button {
        width: 100%;
    }

    .navigator-bar,
    .routes-box,
    .control-panel-record-actions {
        flex-direction: column;
    }

    .navigator-link,
    .route-item,
    .status-badge {
        width: 100%;
    }

    .clean-page-zone {
        min-height: 40vh;
    }
}

/* =========================================================
PUNCT DE EXTINDERE / VIITOR
=========================================================
Acest fișier poate primi stiluri noi doar pe structura existentă și doar când extinderea este cerută explicit.
========================================================= */

/* =========================================================
FINAL – STATUS ȘI DIRECȚIE
=========================================================
STADIU ACTUAL:
- infrastructura vizuală comună este unificată într-un singur style.css
- header-ul, navigatorul și footer-ul sunt păstrate coerent
- index, backend, control panel și dashboard client au suport vizual comun
- formularele și randările generate din JS au stil de bază real și compatibil

UNDE AM RĂMAS:
- stilul este consolidat la nivelul infrastructurii actuale
- suportul DB / MySQL real și stările avansate pot fi extinse peste această bază

DIRECȚIE:
- extindere pe structura actuală fără rescriere totală
- aliniere ulterioară fină după integrarea reală a login-ului, DB-ului și fluxurilor complete

NOTĂ:
- acest fișier rămâne sursa vizuală globală pentru frontend-ul The ABC.

SFÂRȘIT
*/


/* =========================================================
EXTENSII DE ALINIERE HTML ↔ CSS
========================================================= */
.navigator-head {
    align-items: flex-start;
}

.backend-main-panel {
    margin-bottom: 12px;
}

.dashboard-grid,
.control-panel-overview-grid,
.control-panel-lists-grid,
.control-panel-database-grid,
.dashboard-info-grid,
.dashboard-request-summary-grid {
    display: grid;
    gap: 12px;
}

.stats-grid,
.control-panel-overview-grid,
.control-panel-database-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.two-column-grid,
.control-panel-lists-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.overview-panel,
.admin-panel,
.database-panel {
    margin-bottom: 12px;
}

.stat-card {
    min-width: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(11, 18, 32, 0.38);
    box-shadow: var(--shadow-soft);
}

.stat-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-soft);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.stat-value {
    display: block;
    color: var(--text-main);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
}

.action-section-head {
    align-items: flex-start;
}

.action-button-group,
.client-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-content-box,
.dashboard-client-request-list {
    display: grid;
    gap: 10px;
}

.empty-state,
.dashboard-empty-state {
    padding: 12px;
    border: 1px dashed var(--line-soft);
    border-radius: 12px;
    background: rgba(11, 18, 32, 0.24);
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.5;
}

.button,
.button-primary,
.button-secondary,
.primary-button,
.secondary-button,
.danger-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: rgba(11, 18, 32, 0.34);
    color: var(--text-main);
    line-height: 1.4;
    text-align: center;
    transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.button:hover,
.button-primary:hover,
.button-secondary:hover,
.primary-button:hover,
.secondary-button:hover,
.danger-button:hover,
.button:focus-visible,
.button-primary:focus-visible,
.button-secondary:focus-visible,
.primary-button:focus-visible,
.secondary-button:focus-visible,
.danger-button:focus-visible {
    border-color: rgba(126, 162, 255, 0.34);
    transform: translateY(-1px);
}

.button-primary,
.primary-button {
    background: rgba(74, 124, 243, 0.18);
    border-color: rgba(126, 162, 255, 0.34);
}

.button-secondary,
.secondary-button {
    background: rgba(11, 18, 32, 0.34);
}

.danger-button {
    background: rgba(207, 93, 93, 0.12);
    border-color: rgba(207, 93, 93, 0.24);
    color: var(--danger-text);
}

.dashboard-client-layout {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dashboard-info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dashboard-info-card {
    min-width: 0;
}

.readonly-output {
    display: block;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(14, 21, 35, 0.92);
    color: var(--text-main);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    word-break: break-word;
}

.readonly-note {
    display: block;
    margin-top: 6px;
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.4;
}

.dashboard-password-message {
    margin: 0;
}

.dashboard-request-list-wrap > span {
    color: var(--text-main);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

@media (max-width: 1100px) {
    .stats-grid,
    .control-panel-overview-grid,
    .control-panel-database-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dashboard-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .two-column-grid,
    .control-panel-lists-grid,
    .dashboard-info-grid,
    .dashboard-request-summary-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .action-button-group,
    .client-form-actions {
        flex-direction: column;
    }

    .button,
    .button-primary,
    .button-secondary,
    .primary-button,
    .secondary-button,
    .danger-button {
        width: 100%;
    }
}



/* Security access panels */
.access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}
.access-card,
.auth-card {
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 16px;
    background: rgba(255,255,255,0.03);
}
.auth-panel {
    max-width: 560px;
    margin: 40px auto;
}
.auth-form {
    display: grid;
    gap: 12px;
}
.auth-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}
.auth-actions-inline {
    justify-content: flex-end;
}
.auth-message {
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 12px;
}
.auth-error {
    background: rgba(180, 37, 37, 0.18);
    border: 1px solid rgba(255, 120, 120, 0.28);
}
.auth-text {
    margin-bottom: 12px;
}


/* Added for separated request zones and partner modules */
.quick-action-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1rem;}
.quick-action-card,.admin-record-card{border:1px solid rgba(255,255,255,.08);border-radius:18px;padding:1rem 1.1rem;background:rgba(255,255,255,.03);}
.quick-action-card h3,.admin-record-card h3{margin:0 0 .55rem 0;}
.quick-action-card p,.admin-record-card p{margin:.35rem 0;color:inherit;}
.request-zones-panel,.partner-zones-panel{margin-top:1rem;}
.emergency-priority-card{box-shadow:0 0 0 1px rgba(255,255,255,.08) inset;}
.auth-success{padding:.85rem 1rem;border-radius:14px;background:rgba(0,128,0,.12);margin-bottom:1rem;}
.admin-record-card strong{font-weight:700;}


.navigator-bar-split {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.navigator-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.navigator-group-right {
    justify-content: flex-end;
    margin-left: auto;
}

.auth-actions-wrap {
    flex-wrap: wrap;
}


/* Supreme navigator / request wizard updates */
.navigator_panel .section-head{display:none;}
.index_navigator_only_buttons{padding-top:0.25rem;}
.request_wizard_actions{display:flex;gap:0.75rem;justify-content:flex-end;margin-top:1rem;flex-wrap:wrap;}
[data_wizard_step]{display:none;}
.wizard_step_shell{border:1px solid rgba(255,255,255,.08);border-radius:18px;padding:1rem;background:rgba(255,255,255,.02);}


/* Supreme compact request steps */
.client-request-preview{display:flex;flex-direction:column;gap:1rem;}
.client-request-form-preview{display:flex;flex-direction:column;gap:1rem;}
.wizard_step_shell{border:1px solid rgba(255,255,255,.08);border-radius:18px;padding:.875rem;background:rgba(255,255,255,.02);box-shadow:none;}
.client-request-card{padding:.95rem 1rem;border-radius:16px;}
.client-request-card-head{margin-bottom:.7rem;}
.client-request-card-head h3{margin:0;font-size:1.08rem;}
.client-request-card-head p{margin:.2rem 0 0;font-size:.92rem;opacity:.88;}
.client-form-grid.compact-grid{gap:.75rem 1rem;}
.client-form-field{gap:.3rem;}
.client-form-field span{font-size:.91rem;line-height:1.3;}
.client-form-grid.compact-grid .client-form-field input,
.client-form-grid.compact-grid .client-form-field select,
.client-form-grid.compact-grid .client-form-field textarea{min-height:44px;padding:.72rem .8rem;font-size:.95rem;}
.client-form-grid.compact-grid .client-form-field textarea{min-height:96px;}
.step-badge{display:inline-flex;align-items:center;justify-content:center;padding:.22rem .55rem;border-radius:999px;font-size:.78rem;font-weight:700;background:rgba(255,255,255,.08);margin-bottom:.5rem;}
.request_wizard_actions{display:flex;gap:.75rem;justify-content:flex-end;align-items:center;margin-top:.9rem;flex-wrap:wrap;}
.request_wizard_actions .button{min-width:152px;}
@media (max-width: 900px){.wizard_step_shell{padding:.8rem;}.client-request-card{padding:.85rem .85rem;}.request_wizard_actions .button{width:100%;min-width:0;}}


/* =========================================================
EXTINDERI HOMEPAGE 2026 – STRUCTURA NOUĂ PE 4 FOLDERE
========================================================= */
.home-route-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.home-route-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 100%;
}

.home-route-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.home-route-actions .button {
    flex: 1 1 220px;
}

.route-meta-list {
    margin: 0;
    padding-left: 18px;
    color: var(--text-soft);
    line-height: 1.5;
}

.route-meta-list li + li {
    margin-top: 4px;
}

.home-section-kicker {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: var(--radius-pill);
    background: var(--accent-soft);
    color: var(--text-main);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.system-note-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.system-note-card {
    padding: 14px;
    border-radius: var(--radius-soft);
    border: 1px solid var(--line-soft);
    background: var(--bg-card);
}

.system-note-card strong {
    display: block;
    margin-bottom: 6px;
}

.user-state-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--line-soft);
    background: rgba(11, 18, 32, 0.62);
    font-size: 13px;
    color: var(--text-soft);
}

.user-state-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #69d48e;
    box-shadow: 0 0 0 4px rgba(105, 212, 142, 0.12);
}

@media (max-width: 900px) {
    .home-route-grid,
    .system-note-grid {
        grid-template-columns: 1fr;
    }
}

/* Exact2 supreme final hardening */
.navigator_panel{margin-bottom:12px;}
.navigator-panel,.navigator_panel{overflow:hidden;}
.navigator-bar,.navigator-bar-split,.navigator-group,.route-item{max-width:100%;}
.route-item,.navigator-link{overflow-wrap:anywhere;white-space:normal;text-align:center;}
.site-footer-main{display:flex;gap:16px;justify-content:space-between;align-items:flex-start;flex-wrap:wrap;}
.site-footer-left,.site-footer-center,.site-footer-right-spacer{min-width:0;}


/* ABC compact one-page pass */
.page-shell{padding:8px;}
.compact-panel{padding:10px;}
.site-header,.navigator-panel,.navigator_panel,.clean-main-panel,.technical-panel,.site-footer{margin-bottom:8px;}
.section-head{gap:10px;margin-bottom:10px;}
.compact-section-head h1{font-size:22px;}
.compact-section-head h2{font-size:18px;}
.compact-section-head h3{font-size:16px;}
.compact-section-head p{font-size:13px;line-height:1.3;}
.navigator-link,.route-item{min-height:34px;padding:8px 10px;font-size:13px;}
.quick-action-card,.admin-record-card,.wizard_step_shell,.client-request-card{border-radius:14px;}
.quick-action-card,.admin-record-card{padding:.8rem .9rem;}
.client-request-preview,.client-request-form-preview{gap:.75rem;}
.client-request-card{padding:.75rem .8rem;}
.client-request-card-head{margin-bottom:.55rem;}
.client-request-card-head h3{font-size:1rem;}
.client-form-grid{gap:10px;}
.client-form-grid.compact-grid{gap:.6rem .8rem;}
.client-form-grid.compact-grid .client-form-field input,.client-form-grid.compact-grid .client-form-field select,.client-form-grid.compact-grid .client-form-field textarea{min-height:40px;padding:.62rem .72rem;font-size:.92rem;}
.client-form-grid.compact-grid .client-form-field textarea{min-height:84px;}
.request_wizard_actions .button{min-width:132px;}
.site-footer-title{font-size:16px;}
.site-footer-summary-text,.site-footer-links,.site-footer-copyright{font-size:12px;}

.site-page-label{font-size:12px;opacity:.9;margin:.15rem 0 0;}
.site-footer-main{align-items:center;}
.site-footer-left{display:flex;align-items:center;gap:12px;}
.site-footer-summary-card{padding:.45rem .75rem;min-height:auto;}
.site-footer-center{text-align:center;justify-content:center;}

.navigator-group-right{display:none;}
.site-footer{overflow:hidden;}
.site-footer-links{display:flex;flex-wrap:wrap;justify-content:center;gap:6px 10px;max-width:100%;}
.site-footer-main{grid-template-columns:minmax(0,1fr) auto minmax(0,1fr);}
.site-footer-left,.site-footer-center{min-width:0;}

.navigator-panel .navigator-bar{margin-top:0;}
.navigator-panel .navigator-group-left{display:flex;flex-wrap:wrap;gap:8px;}
.navigator-panel .navigator-link{min-width:auto;}

.site-identity{gap:8px;}
.site-title{margin-bottom:4px;}
.site-page-label{font-size:14px;line-height:1.2;margin-top:6px;display:block;}
.site-header-right .status-card{max-width:280px;width:280px;justify-self:end;}
.abc-home-six-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;}
.compact-home-card{padding:.75rem;min-height:110px;display:flex;flex-direction:column;justify-content:space-between;}
.compact-home-card h3{font-size:18px;text-align:center;margin:0 0 8px;}
.compact-home-card .home-route-actions{justify-content:center;}
.flow-zone-head{margin-bottom:8px;}
#flow-zone{padding-top:10px;padding-bottom:10px;}
.site-footer{margin-top:8px;position:relative;z-index:1;}
.site-footer-main{padding-top:0;padding-bottom:0;}
.site-footer-title{font-size:14px;}
.site-footer-summary-kicker{font-size:13px;}
@media (max-width: 900px){.abc-home-six-grid{grid-template-columns:1fr;}}

.site-footer-left{display:flex;flex-direction:column;align-items:flex-start;gap:6px;}
.site-footer-title a{text-decoration:none;color:inherit;}
.site-footer-summary-card{display:block;width:220px;max-width:220px;}
.site-footer-summary-text{font-size:11px;line-height:1.25;margin:.25rem 0 0;}
.abc-home-six-grid{gap:8px;}
.compact-home-card{min-height:86px;padding:.55rem .7rem;}
.compact-home-card h3{font-size:16px;margin:0 0 6px;}
.compact-home-card .button{padding:.35rem .7rem;font-size:12px;min-height:auto;}
#flow-zone .panel{margin-bottom:0;}

.site-brand{margin-bottom:8px;display:inline-block;}
.site-title{margin-top:10px;margin-bottom:0;font-size:30px;}
.site-header-right .status-card{padding-top:10px;padding-bottom:10px;min-height:auto;}
.content-engine-panel{padding-top:12px;border:1px solid rgba(130,170,255,.28);box-shadow:inset 0 0 0 1px rgba(255,255,255,.03);}
.content-integrated-nav{margin-bottom:12px;padding-bottom:8px;border-bottom:1px solid rgba(130,170,255,.18);}
.content-integrated-nav .route-strip{margin:0;}
.site-footer-title,.site-footer-title a{text-transform:uppercase;}
.site-footer-summary-kicker{font-size:12px;display:block;}

.site-page-label{font-size:15px;line-height:1.2;margin-top:10px;margin-bottom:0;display:block;}
.site-title{margin-top:14px;margin-bottom:0;font-size:28px;}
.site-header-right .status-card{max-width:250px;width:250px;padding:8px 14px;min-height:auto;}
.status-card .status-title{font-size:12px;}
.status-card .status-phone{font-size:18px;line-height:1.05;}
.content-integrated-nav{margin-bottom:8px;padding-bottom:8px;border-bottom:1px solid rgba(130,170,255,.18);}
.content-integrated-nav-row{display:flex;justify-content:space-between;align-items:center;gap:12px;}
.content-nav-left,.content-nav-right{display:flex;gap:8px;align-items:center;flex-wrap:wrap;}
.site-footer-main{grid-template-columns:220px 1fr;align-items:center;}
.site-footer-center{justify-self:center;text-align:center;}
.site-footer-links{justify-content:center;}
.site-footer-links a[href*="social"], .site-footer-links a[href*="retele"], .site-footer-links a[data-i18n="footer_socials"]{display:none !important;}
.site-footer-title,.site-footer-title a{text-transform:none;font-size:16px;}
.site-footer-summary-card{width:190px;max-width:190px;}


/* THE-ABC cleanup v4 */
.content-nav-row-right { justify-content: flex-end; }
.content-nav-spacer { flex: 1 1 auto; }
.site-shell-main > .site-content-shell { margin-top: 12px; }
.site-page-label { opacity: .92; }
.site-footer-links { justify-content: center; }
.site-header-meta .phone-line-card { min-width: 240px; }
.auth-shell-page .site-shell-main { gap: 12px; }
.auth-shell-page .site-content-shell { padding-top: 14px; }
.auth-shell-page .auth-card { margin: 0 auto; max-width: 860px; }

/* === cleanup 2026-04-17 === */
.plain-link { color: inherit; text-decoration: none; }
.abc-stack { display: grid; gap: 18px; }
.abc-static-header { position: relative; z-index: 2; }
.content-engine-panel { display: grid; gap: 18px; }
.abc-home-six-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.abc-info-panel { display: grid; gap: 14px; }
.admin-topbar-shell { margin-bottom: 14px; }
.admin-layout-grid { display: grid; grid-template-columns: minmax(220px, 280px) minmax(0, 1fr); gap: 18px; align-items: start; }
.admin-side-shell { position: sticky; top: 12px; }
.admin-side-nav { display: grid; gap: 10px; }
.admin-content-stack { display: grid; gap: 18px; }
.admin-content-box { margin-top: 14px; }
.site-header .site-title { margin-bottom: 0; }
.site-header .site-page-label { display: none; }
#shared-dashboard-root { min-height: 240px; }
@media (max-width: 900px) {
  .admin-layout-grid { grid-template-columns: 1fr; }
  .admin-side-shell { position: static; }
}

/* === compact pass 2026-04-17 b === */
:root {
  --abc-gap-tight: 10px;
}
.compact-page { gap: 12px; }
.compact-panel { padding: 12px 14px; }
.site-header .home-section-kicker { font-size: 12px; display: inline-block; margin-bottom: 4px; }
.site-header .site-title,
.auth-site-title { font-size: 1.55rem; line-height: 1.1; margin: 2px 0 0; }
.header-contact-card { padding: 8px 12px; min-width: 210px; }
.header-contact-kicker { font-size: 11px; }
.header-contact-link { font-size: 17px; }
.section-head.compact-section-head { gap: 10px; }
.content-compact-tools { display:flex; align-items:center; justify-content:flex-end; }
.content-integrated-nav { margin-top: -2px; }
.content-integrated-nav-row { align-items: center; }
.content-nav-right { display:flex; flex-wrap:wrap; gap:8px; justify-content:flex-end; }
.abc-home-six-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.compact-home-card { min-height: 118px; padding: 14px; }
.compact-home-card h3 { font-size: 1rem; margin-bottom: 8px; }
.compact-home-card p { font-size: 14px; margin-bottom: 10px; }
.home-route-actions .button { min-height: 34px; padding: 7px 12px; }
.stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.stat-card { padding: 12px; }
.stat-label { font-size: 11px; }
.stat-value { font-size: 1.1rem; line-height: 1.1; }
.site-footer-main { display:grid; grid-template-columns: 220px 1fr 170px; gap:12px; align-items:start; }
.site-footer-title, .site-footer-right-title, .site-footer-copyright-title { font-size: 13px; margin:0 0 8px; text-transform: uppercase; letter-spacing: .04em; }
.site-footer-summary-card { min-height:auto; padding: 12px; }
.site-footer-center { text-align:center; display:grid; gap:8px; }
.site-footer-links { justify-content:center; flex-wrap:wrap; gap:8px; }
.site-footer-right { display:grid; gap:8px; text-align:right; }
.site-footer-social-links { display:grid; gap:6px; justify-items:end; }
.auth-content-panel { max-width: 760px; margin: 0 auto; }
.auth-heading-row { justify-content:flex-start; }
.auth-page-heading { margin-bottom: 2px; }
.auth-card-compact { max-width: 520px; margin: 0 auto; padding: 14px; }
.auth-card-compact .client-form-field input,
.auth-card-compact .client-form-field select,
.auth-card-compact .client-form-field textarea { min-height: 42px; }
.admin-layout-grid { grid-template-columns: 240px minmax(0, 1fr); gap: 14px; }
.admin-side-nav .navigator-link { min-height: 38px; }
.backend-page .content-engine-panel,
.control-panel-page .content-engine-panel,
.compact-index-page .content-engine-panel { gap: 14px; }
.routes-box { display:flex; flex-wrap:wrap; gap:8px; }
.technical-panel .info-stack { gap: 10px; }
@media (max-width: 1200px) {
  .abc-home-six-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .abc-home-six-grid, .stats-grid, .site-footer-main { grid-template-columns: 1fr; }
  .site-footer-right { text-align:left; }
  .site-footer-social-links { justify-items:start; }
}

/* === compact pass 2026-04-17 c === */
.compact-language-switcher { min-width: 180px; max-width: 240px; }
.compact-language-switcher .language-switcher-field { gap: 4px; }
.compact-language-switcher .language-switcher-select { min-height: 38px; padding: 6px 10px; }
.compact-index-page .abc-home-six-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.compact-index-page .compact-home-card { min-height: 106px; }
.compact-index-page .abc-info-panel { margin-top: -2px; }
.auth-shell-page .site-footer { margin-top: 8px; }
.auth-shell-page .page-shell { min-height: 100vh; }

/* === compact pass 2026-04-17 d === */
.compact-index-page .content-engine-panel { gap: 10px; }
.compact-index-page .section-head.compact-section-head { padding-bottom: 2px; }
.compact-index-page .abc-home-six-grid { gap: 10px; }
.compact-index-page .compact-home-card { min-height: 92px; padding: 11px 12px; }
.compact-index-page .compact-home-card h3 { font-size: .95rem; margin: 0 0 6px; }
.compact-index-page .compact-home-card p { font-size: 13px; line-height: 1.25; margin: 0 0 8px; }
.compact-index-page .home-route-actions .button { min-height: 30px; padding: 5px 10px; font-size: 13px; }
.compact-index-page .abc-info-panel .stats-grid { gap: 8px; }
.compact-index-page .abc-info-panel .stat-card { padding: 10px; }
.compact-index-page .abc-info-panel .stat-value { font-size: 1rem; }
.compact-index-page .site-footer { margin-top: 4px; }

/* === compact pass 2026-04-17 e === */
.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; }
.flag-language-switcher { display:flex; gap:8px; align-items:center; justify-content:flex-end; }
.lang-flag-btn { min-width:42px; min-height:38px; border-radius:12px; border:1px solid rgba(255,255,255,.2); background:rgba(255,255,255,.06); cursor:pointer; font-size:20px; }
.compact-index-page .stats-grid-compact { grid-template-columns: repeat(2, minmax(0,1fr)); gap:8px; }
.compact-index-page .stats-grid-compact .stat-card { min-height:auto; }

/* === compact pass 2026-04-17 f === */
.site-header .site-title { font-size: 1rem; }
.header-contact-kicker { display:none; }
.header-contact-card { min-width: 150px; padding: 6px 10px; }
.header-contact-link { font-size: 15px; }
.compact-index-page .section-head.compact-section-head { align-items:start; }
.separated-content-nav-row { border-top: 1px solid rgba(255,255,255,.08); padding-top: 10px; }
.compact-meta-stack { display:grid; gap:6px; align-content:start; }
.compact-meta-item { display:inline-flex; align-items:center; gap:6px; padding:6px 10px; border-radius:12px; background:rgba(255,255,255,.05); font-size:13px; white-space:nowrap; }
.compact-dashboard-links { gap:6px; }
.compact-dashboard-links .navigator-link { min-height:34px; padding:7px 10px; }
.compact-language-switcher { min-width: 108px; max-width: 108px; }
.flag-language-switcher { gap:6px; }
.lang-flag-btn { min-width:36px; min-height:34px; font-size:18px; }
.control-visual-head { grid-template-columns: 1fr auto 1fr; }
.control-visual-head > div:first-child { justify-self:start; }
.control-visual-head > div:last-child { justify-self:end; }
@media (max-width:900px){ .control-visual-head { grid-template-columns:1fr; } }

/* === compact pass 2026-04-17 g === */
.header-contact-card { min-width: 170px; max-width: 190px; padding: 6px 10px; }
.header-contact-link { font-size: 14px; }
.compact-index-page .content-engine-panel { padding-top: 10px; padding-bottom: 10px; }
.compact-index-page .content-integrated-nav { margin-top: 2px; }
.separated-content-nav-row { padding-top: 8px; }
.compact-meta-stack { gap: 4px; }
.compact-meta-item { padding: 4px 9px; font-size: 12px; min-height: 28px; }
.compact-meta-value { color: #d8f8e4; font-weight: 700; }
.meta-role-known { color: #8cffb1; }
.compact-dashboard-links .navigator-link { min-height: 30px; padding: 5px 10px; font-size: 13px; }
.compact-index-page .compact-home-card { min-height: 80px; padding: 9px 10px; }
.compact-index-page .compact-home-card h3 { margin: 0 0 4px; font-size: .92rem; }
.compact-index-page .home-route-actions { margin-top: 2px; }
.compact-index-page .home-route-actions .button { min-height: 28px; padding: 4px 10px; }

/* === compact pass 2026-04-17 h === */
.control-visual-head { grid-template-columns: 1.1fr 2.1fr 0.9fr; }
.header-side-stack.align-right { justify-self:end; width:auto; }
.header-contact-card { min-width: 162px; max-width: 168px; padding: 5px 9px; justify-items:end; text-align:right; }
.header-contact-kicker-visible { display:block; font-size:11px; line-height:1.1; margin-bottom:2px; opacity:.9; }
.header-contact-link { display:block; font-size:16px; }
.compact-language-switcher { min-width: 96px; max-width: 96px; padding: 6px 8px; }
.flag-language-switcher { gap:5px; }
.lang-flag-btn { min-width:32px; min-height:30px; font-size:17px; border-radius:10px; }

/* === compact pass 2026-04-17 i === */
.header-contact-card { min-width: 156px; max-width: 156px; padding: 5px 8px; }
.compact-language-switcher { min-width: 88px; max-width: 88px; padding: 4px 6px; }
.flag-language-switcher { justify-content:center; gap:4px; }
.lang-flag-btn { min-width:30px; min-height:28px; font-size:16px; }
.compact-index-page .abc-home-six-grid { gap: 8px; }
.compact-index-page .compact-home-card { min-height: 72px; padding: 8px 10px; }
.compact-index-page .compact-home-card h3 { margin: 0 0 2px; font-size: .9rem; line-height: 1.1; }
.compact-index-page .home-route-actions .button { min-height: 26px; padding: 3px 10px; }
.compact-index-page .home-route-actions { margin-top: 0; }

/* === compact pass 2026-04-17 j === */
.compact-language-switcher { min-width: 82px; max-width: 82px; padding: 3px 5px; }
.lang-flag-btn { min-width:28px; min-height:26px; font-size:15px; border-radius:9px; }
.site-footer { padding-top: 8px; padding-bottom: 8px; }
.site-footer-main { gap: 8px; }
.site-footer-summary-card { padding: 10px; }
.site-footer-center { gap: 5px; }
.site-footer-links { gap: 6px; }
.site-footer-right { gap: 5px; }

/* === compact pass 2026-04-17 k === */
.auth-shell-page .content-engine-panel,
.auth-shell-page .auth-content-panel { padding-top: 10px; padding-bottom: 10px; }
.auth-shell-page .auth-heading-row { margin-bottom: 6px; }
.auth-shell-page .auth-card-compact { padding: 12px; }
.auth-shell-page .auth-card-compact .button,
.auth-shell-page .auth-card-compact input,
.auth-shell-page .auth-card-compact select { min-height: 34px; }
.auth-shell-page .site-footer { padding-top: 6px; padding-bottom: 6px; }

/* === compact pass 2026-04-17 l === */
.compact-index-page .abc-home-six-grid { margin-top: -4px; }
.compact-index-page .compact-home-card { min-height: 66px; padding: 7px 9px; }
.compact-index-page .compact-home-card h3 { margin: 0 0 1px; font-size: .88rem; }
.compact-index-page .home-route-actions .button { min-height: 24px; padding: 2px 9px; font-size: 12px; }
.compact-language-switcher { min-width: 78px; max-width: 78px; padding: 2px 4px; }
.lang-flag-btn { min-width:26px; min-height:24px; font-size:14px; }
.site-footer { padding-top: 6px; padding-bottom: 6px; }
.site-footer-summary-card { padding: 8px; }
.site-footer-social-links a { font-size: 12px; }

/* === compact pass 2026-04-17 m === */
.site-header .site-title, .auth-site-title { font-size: 0.90rem; }
.header-contact-card { min-width: 146px; max-width: 146px; padding: 4px 6px; }
.header-contact-kicker-visible { font-size: 10px; }
.header-contact-link { font-size: 14px; }

/* === index continuity rules 2026-04-17 n === */
.compact-index-page .content-shell { gap: 14px; }
.compact-index-page .site-footer { margin-top: 14px; }


.auth-language-panel {
    width: min(680px, 100%);
    margin: 0 auto 12px;
    padding: 14px 18px;
}

.panel-heading-row--auth {
    margin-bottom: 0;
}

.footer-card-text {
    margin-top: 8px;
    font-size: 0.76rem;
    line-height: 1.35;
    color: rgba(226, 235, 255, 0.84);
}


.section-head-compact{
  align-items:flex-start;
  gap:14px;
}

.content-top-strip{
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}
.content-meta-strip{
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:wrap;
  min-width:0;
}
.content-top-strip-right{
  margin-left:auto;
  display:flex;
  align-items:center;
  justify-content:flex-end;
}
.navigator-bar-right-only{
  justify-content:flex-end;
}
.navigator-bar-right-only .navigator-group-right{
  margin-left:auto;
}
@media (max-width:860px){
  .content-top-strip{
    flex-direction:column;
    align-items:stretch;
  }
  .content-top-strip-right{
    margin-left:0;
    justify-content:flex-end;
  }
}
.content-meta-stack{
  display:flex;
  flex-direction:column;
  gap:8px;
  min-width:0;
}
.content-meta-row{
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:wrap;
}
.content-meta-label{
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:0.08em;
  color:rgba(214,231,255,0.86);
}
.content-meta-separator{
  color:rgba(214,231,255,0.72);
  font-weight:700;
}
.content-meta-value{
  font-size:14px;
  font-weight:700;
  color:#f4f8ff;
}
.content-meta-value-accent{
  color:#8cf6b6;
}
.content-meta-spacer{
  width:14px;
}
.dashboard-nav{
  padding-top:6px;
  margin-top:4px;
}
.dashboard-nav-links{
  margin-left:auto;
}
.auth-page-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}
.auth-page-heading{
  display:flex;
  flex-direction:column;
  gap:4px;
  min-width:0;
}
.auth-language-panel{
  margin-left:auto;
}
@media (max-width: 860px){
  .section-head-compact{
    flex-direction:column;
    align-items:stretch;
  }
  .content-meta-spacer{
    display:none;
  }
  .auth-page-header{
    flex-direction:column;
    align-items:stretch;
  }
  .auth-language-panel{
    margin-left:0;
    align-self:flex-end;
  }
}

.auth-content-head {
  padding-top: 0;
  padding-bottom: 10px;
}

.auth-meta-stack {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
}

.auth-identity-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.content-identity-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid rgba(110, 170, 255, 0.22);
  border-radius: 14px;
  background: rgba(10, 16, 36, 0.58);
}

.auth-language-panel {
  margin-left: auto;
}

.auth-card-compact {
  margin-top: 2px;
}

.auth-message-card {
  display: grid;
  gap: 14px;
  padding: 10px 0 2px;
}

.auth-message-card p {
  margin: 0;
}

.auth-shell-page .content-engine-panel {
  gap: 12px;
}

.auth-shell-page .site-footer {
  margin-top: 18px;
}

@media (max-width: 900px) {
  .auth-meta-stack {
    flex-direction: column;
    align-items: stretch;
  }

  .auth-language-panel {
    margin-left: 0;
    align-self: flex-end;
  }
}


/* === v30 stability overrides === */
.site-footer-main{
  display:grid !important;
  grid-template-columns:minmax(180px,1fr) auto minmax(180px,1fr) !important;
  align-items:end !important;
  column-gap:24px !important;
}
.site-footer-center{
  justify-self:center !important;
  text-align:center !important;
  margin-inline:auto !important;
  width:max-content !important;
  max-width:100% !important;
}
.site-footer-links{
  justify-content:center !important;
}
.auth-card.auth-card-compact,
.shared-dashboard-panel,
.client-login-panel,
.partner-login-panel,
.admin-login-panel{
  max-width:640px !important;
  padding:20px !important;
}
.auth-form,
.shared-dashboard-panel__form{
  gap:12px !important;
}
.auth-actions{
  gap:10px !important;
}
.compact-dashboard-shell{
  display:grid !important;
  grid-template-columns:240px minmax(0,1fr) !important;
  gap:16px !important;
  align-items:start !important;
}
.compact-dashboard-sidebar,
.compact-dashboard-content,
.admin-layout-grid,
.admin-content-box{
  display:block !important;
}
.admin-layout-grid{
  display:grid !important;
  grid-template-columns:240px minmax(0,1fr) !important;
  gap:16px !important;
  align-items:start !important;
}
.admin-header-static{
  margin-bottom:12px !important;
}
[data-page="admin_dashboard"] .admin-header-static{
  display:none !important;
}
[data-page="admin_dashboard"] .shared-shell-content .section-head:first-child,
[data-page="client_dashboard"] .shared-shell-content .section-head:first-child{
  margin-bottom:12px !important;
}
.shared-shell-content .content-identity-group{
  flex-wrap:wrap !important;
}
.public-flow-shell,
.request-wizard-shell,
.shared-shell-content{
  min-height:0 !important;
}
[data_wizard_step].is_active{
  display:block !important;
}
[data_wizard_step].is_hidden{
  display:none !important;
}
[data_wizard_step]:first-of-type{
  display:block;
}
.flow-stepper,
.request-stepper{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  margin-bottom:12px;
}
.flow-step-indicator{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:110px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.05);
  font-size:12px;
  font-weight:700;
}
.flow-step-indicator.is_active{
  border-color:rgba(96,165,250,.55);
  background:rgba(59,130,246,.16);
}
.flow-primary-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:flex-end;
}
@media (max-width: 980px){
  .site-footer-main,
  .compact-dashboard-shell,
  .admin-layout-grid{
    grid-template-columns:1fr !important;
  }
  .site-footer-left,
  .site-footer-center,
  .site-footer-right{
    justify-self:center !important;
    text-align:center !important;
  }
}


/* v42 dashboard shell compact overrides */
.auth-heading-row-shell{margin:0 0 8px;padding:0;}
.auth-content-head-shell{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;width:100%;padding:0 0 8px;border-bottom:1px solid rgba(255,255,255,.14);}
.auth-content-head-shell .auth-meta-stack{display:flex;flex-wrap:wrap;align-items:center;gap:8px 18px;min-width:0;flex:1 1 auto;}
.auth-content-head-shell .content-meta-item{font-size:12px;line-height:1.25;}
.auth-content-head-shell .content-meta-item strong{font-size:12px;}
.auth-content-head-shell .auth-language-panel{margin-left:auto;display:flex;align-items:center;gap:10px;flex:0 0 auto;}
.auth-content-panel{padding:14px 18px 16px;gap:10px;}
.auth-card-dashboard{width:100%;max-width:none;margin:0;}
.shared-dashboard-panel--compact{padding:14px 16px 16px;gap:10px;}
.shared-dashboard-panel--compact .shared-dashboard-panel__title{font-size:15px;line-height:1.2;margin:0;}
.shared-dashboard-panel--compact .shared-dashboard-panel__subtitle{display:none !important;}
.shared-dashboard-panel--compact .auth-form{gap:10px;}
.shared-dashboard-panel--compact .auth-field-grid{display:flex;flex-direction:column;gap:8px;}
.shared-dashboard-panel--compact .client-form-field span{font-size:11px;margin-bottom:3px;}
.shared-dashboard-panel--compact .client-form-field input{min-height:40px;padding:10px 12px;font-size:13px;}
.shared-dashboard-panel--compact .auth-actions{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-top:4px;}
.shared-dashboard-panel--compact .auth-back-link{order:1;}
.shared-dashboard-panel--compact .auth-login-btn{order:2;min-width:124px;}
.shared-dashboard-panel--compact .shared-auth-inline-links{margin-top:4px;gap:10px 14px;}
@media (max-width: 900px){
  .auth-content-head-shell{flex-direction:column;align-items:flex-start;}
  .auth-content-head-shell .auth-language-panel{margin-left:0;}
}


/* === archiva3 admin shell alignment + footer containment === */
.content-top-strip{display:flex;align-items:center;justify-content:space-between;gap:10px;flex-wrap:nowrap;padding:8px 10px;}
.content-meta-strip{display:flex;align-items:center;gap:6px;flex-wrap:wrap;min-width:0;}
.content-top-strip-right{margin-left:auto;display:flex;align-items:center;justify-content:flex-end;}
.compact-language-switcher{margin-left:auto;}
.content-meta-label,.content-meta-value,.content-meta-separator{font-size:12px;line-height:1.15;}
.content-meta-spacer{display:inline-block;width:10px;}
.admin-dashboard-heading-panel{padding:10px 12px;margin-bottom:10px;}
.admin-layout-grid{grid-template-columns:220px minmax(0,1fr);gap:12px;}
.admin-side-shell{padding:12px;}
.admin-side-nav .navigator-link{min-height:34px;padding:7px 10px;font-size:13px;}
.admin-control-panel-block{margin-top:10px;padding-top:10px;border-top:1px solid var(--line);}
.stats-grid-compact{grid-template-columns:repeat(4,minmax(0,1fr));gap:8px;}
.stats-grid-compact .stat-card,.stats-grid .stat-card{padding:10px;}
.stats-grid-compact .stat-label,.stats-grid .stat-label{font-size:10px;}
.stats-grid-compact .stat-value,.stats-grid .stat-value{font-size:1rem;}
#adminRequests .section-head,#adminPartners .section-head,#adminClients .section-head,#abcControlPanel .section-head{margin-bottom:10px;}
#adminRequests h2,#adminPartners h2,#adminClients h2,#abcControlPanel h2{font-size:18px;}
#adminRequests p,#adminPartners p,#adminClients p,#abcControlPanel p{font-size:13px;}
.page-shell > .site-footer,.control-panel-page .site-footer,.compact-page .site-footer{width:100%;max-width:calc(var(--page-max) - 24px);margin-left:auto;margin-right:auto;}
.control-panel-main > .site-footer,.clean-main-panel > .site-footer{max-width:100%;}
.client-request-preview,.client-request-card,.wizard_step_shell{overflow:hidden;}
.request_wizard_actions,.wizard-actions{display:flex;align-items:center;justify-content:space-between;gap:10px;flex-wrap:wrap;}
.request_wizard_actions .button,.wizard-actions .button{min-width:120px;}
@media (max-width: 900px){
  .content-top-strip{flex-wrap:wrap;align-items:flex-start;}
  .content-top-strip-right{width:100%;justify-content:flex-start;margin-left:0;}
  .admin-layout-grid{grid-template-columns:1fr;}
  .stats-grid-compact{grid-template-columns:1fr 1fr;}
}


/* === archiva4 flow cleanup + admin menu containment === */
.admin-side-shell{max-height:calc(100vh - 210px);overflow:auto;}
.admin-side-nav{display:grid;gap:6px;max-height:32vh;overflow:auto;padding-right:4px;}
.admin-side-nav-secondary{max-height:20vh;}
.control-panel-page .site-header{margin-bottom:8px;}
.control-panel-page .content-engine-panel{width:100%;max-width:100%;}
.control-panel-page .abc-stack{gap:8px;}
.flow-route-panel,.shared-auth-context-panel{display:none !important;}
.private-partner-account-page .site-footer,.business-partner-account-page .site-footer{width:100%;max-width:calc(var(--page-max) - 24px);margin-left:auto;margin-right:auto;}
.private-partner-account-page .clean-main-panel,.business-partner-account-page .clean-main-panel,.private-partner-account-page .control-panel-main,.business-partner-account-page .control-panel-main{width:100%;max-width:100%;}
.client-request-preview{margin-top:0;}
.client-request-preview-head{border-top:1px solid var(--line);padding-top:10px;}
.client-request-preview-head .status-badge{align-self:flex-start;}
.wizard_step_shell{margin-top:0;}
.wizard-actions,.request_wizard_actions{padding-top:8px;border-top:1px solid rgba(15,23,42,.08);}
#adminRequests .stats-grid,#adminClients .stats-grid,#adminPartners .stats-grid,#abcControlPanel .stats-grid,.stats-grid-compact{gap:6px;}
#adminRequests .stat-card,#adminClients .stat-card,#adminPartners .stat-card,#abcControlPanel .stat-card,.stats-grid-compact .stat-card{padding:8px;}
#adminRequests .stat-label,#adminClients .stat-label,#adminPartners .stat-label,#abcControlPanel .stat-label,.stats-grid-compact .stat-label{font-size:9px;}
#adminRequests .stat-value,#adminClients .stat-value,#adminPartners .stat-value,#abcControlPanel .stat-value,.stats-grid-compact .stat-value{font-size:.94rem;}


/* === archiva5 header parity + admin logout + flow cleanup === */
.site-header .site-title,.auth-site-title{font-size:.84rem;line-height:1.05;max-width:240px;}
.header-contact-card{min-width:132px;max-width:140px;padding:4px 6px 4px 4px;}
.header-contact-link{letter-spacing:.01em;}
.site-footer-summary-kicker{font-size:11px;}
.admin-heading-row{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;}
.admin-heading-actions{margin-left:auto;display:flex;align-items:center;justify-content:flex-end;}
.admin-side-shell,.admin-control-panel-block{overflow:auto;}
.private-partner-account-page .client-request-preview,.business-partner-account-page .client-request-preview,.private-client-account-page .client-request-preview,.business-client-account-page .client-request-preview{margin-top:0;}
.private-partner-account-page .content-integrated-nav,.business-partner-account-page .content-integrated-nav,.private-client-account-page .content-integrated-nav,.business-client-account-page .content-integrated-nav,.private-partner-account-page .shared-auth-context-panel,.business-partner-account-page .shared-auth-context-panel{display:none !important;}
.private-partner-account-page .clean-main-panel,.business-partner-account-page .clean-main-panel,.private-client-account-page .clean-main-panel,.business-client-account-page .clean-main-panel{padding-top:10px;}
.private-partner-account-page .content-top-strip,.business-partner-account-page .content-top-strip,.private-client-account-page .content-top-strip,.business-client-account-page .content-top-strip{border-bottom:1px solid rgba(15,23,42,.08);margin-bottom:10px;padding-bottom:8px;}
.wizard-actions .button[hidden],.request_wizard_actions .button[hidden]{display:none !important;}
.wizard-actions,.request_wizard_actions{justify-content:space-between;}
.wizard-actions [data_wizard_next],.wizard-actions [data-wizard-next],.request_wizard_actions [data_wizard_next],.request_wizard_actions [data-wizard-next]{margin-left:auto;}
.wizard-actions [data_wizard_prev],.wizard-actions [data-wizard-prev],.request_wizard_actions [data_wizard_prev],.request_wizard_actions [data-wizard-prev]{margin-right:auto;}
@media (max-width:900px){.admin-heading-row{flex-direction:column;}.admin-heading-actions{width:100%;justify-content:flex-start;}.site-header .site-title,.auth-site-title{max-width:none;}}


/* ARCHIVA 6 — flow step alignment + shell local cleanup */
.client-request-preview-head > div > p{display:none;}
.client-request-card-head > div > p{display:none;}
.client-request-card-head .step-badge{display:none;}
.client-request-preview-head{align-items:flex-start;}
.client-request-preview-head .status-badge{align-self:flex-start;}
.private-client-account-page .site-header,
.business-client-account-page .site-header,
.private-partner-account-page .site-header,
.business-partner-account-page .site-header{width:100%;max-width:100%;}
.private-client-account-page .clean-main-panel,
.business-client-account-page .clean-main-panel,
.private-partner-account-page .clean-main-panel,
.business-partner-account-page .clean-main-panel{padding:10px 12px 12px;}
.private-client-account-page .content-top-strip + .client-request-preview,
.business-client-account-page .content-top-strip + .client-request-preview,
.private-partner-account-page .content-top-strip + .client-request-preview,
.business-partner-account-page .content-top-strip + .client-request-preview{border-top:1px solid rgba(15,23,42,.08);padding-top:10px;}
.private-client-account-page .request_wizard_actions,
.business-client-account-page .request_wizard_actions,
.private-partner-account-page .wizard-actions,
.business-partner-account-page .wizard-actions{margin-top:8px;padding-top:8px;}
.private-client-account-page .request_wizard_actions [data_wizard_next],
.business-client-account-page .request_wizard_actions [data_wizard_next],
.private-partner-account-page .wizard-actions [data_wizard_next],
.business-partner-account-page .wizard-actions [data_wizard_next]{margin-left:auto;}
.private-client-account-page .request_wizard_actions [data_wizard_prev],
.business-client-account-page .request_wizard_actions [data_wizard_prev],
.private-partner-account-page .wizard-actions [data_wizard_prev],
.business-partner-account-page .wizard-actions [data_wizard_prev]{margin-right:auto;}
.private-client-account-page .site-footer,
.business-client-account-page .site-footer,
.private-partner-account-page .site-footer,
.business-partner-account-page .site-footer{max-width:100%;}


/* ARCHIVA 7 — dashboard compact + member_worker */
.shared-dashboard-page .content-engine-panel,
[data-page="client_dashboard"] .content-engine-panel,
[data-page="admin_control_panel"] .content-engine-panel{padding:12px 14px 14px;gap:10px;}
[data-page="client_dashboard"] .content-integrated-nav{padding:6px 8px;margin-bottom:8px;}
[data-page="client_dashboard"] .route-item.navigator-link{padding:7px 10px;font-size:12px;}
[data-page="client_dashboard"] .abc-info-panel{padding:10px 12px;}
[data-page="client_dashboard"] #shared-dashboard-root{min-height:160px;}
[data-page="client_dashboard"] .dashboard-grid.stats-grid{gap:6px;}
[data-page="client_dashboard"] .stat-card{padding:8px;min-height:auto;}
[data-page="client_dashboard"] .stat-label{font-size:9px;}
[data-page="client_dashboard"] .stat-value{font-size:.92rem;}
[data-page="admin_control_panel"] .admin-dashboard-heading-panel{padding:10px 12px;}
[data-page="admin_control_panel"] .abc-zone-title{font-size:15px;line-height:1.2;}
[data-page="admin_control_panel"] .abc-zone-note{font-size:11px;line-height:1.25;}
[data-page="admin_control_panel"] .admin-layout-grid{gap:10px;}
[data-page="admin_control_panel"] .admin-side-shell{padding:10px 12px;max-height:calc(100vh - 250px);overflow:auto;}
[data-page="admin_control_panel"] .admin-side-nav{gap:6px;}
[data-page="admin_control_panel"] .admin-content-stack{gap:10px;}
[data-page="admin_control_panel"] .admin-content-box{padding:10px;}
[data-page="admin_control_panel"] .stats-grid{gap:6px;}
[data-page="admin_control_panel"] .stat-card{padding:8px;min-height:auto;}
[data-page="admin_control_panel"] .stat-label{font-size:9px;}
[data-page="admin_control_panel"] .stat-value{font-size:.92rem;}


/* ARCHIVA 8 — runtime auth cleanup + flow/dashboard compactare */
.content-top-strip { padding: 8px 12px; gap: 8px; }
.content-meta-strip { gap: 4px; font-size: 12px; line-height: 1.2; }
.content-top-strip-right { margin-left: auto; }
.compact-language-switcher { transform: scale(.94); transform-origin: right center; }
.client-request-preview, .overview-panel, .abc-info-panel { margin-top: 10px; }
.client-request-preview-head, .client-request-card-head, .shared-dashboard-panel__heading { padding-top: 8px; padding-bottom: 8px; }
.client-request-card { padding: 10px 12px; }
.client-form-grid.compact-grid { gap: 8px 10px; }
.client-form-field span { margin-bottom: 4px; font-size: 12px; }
.client-form-field input, .client-form-field select, .client-form-field textarea { padding-top: 8px; padding-bottom: 8px; min-height: 38px; }
.request_wizard_actions { margin-top: 10px; justify-content: space-between; }
.request_wizard_actions [data_wizard_prev] { margin-right: auto; }
.request_wizard_actions [data_wizard_next], .request_wizard_actions [data_wizard_submit] { margin-left: auto; }
.shared-dashboard-panel__title, .section-head.compact-section-head h2 { font-size: 18px; line-height: 1.2; }
.dashboard-grid.stats-grid { gap: 8px; }
.dashboard-grid.stats-grid .stat-card { padding: 8px 10px; }
.compact-page .panel.compact-panel { margin-bottom: 10px; }
.page-shell.compact-page { gap: 10px; }


/* ARCHIVA 9 — flow uniformity + dashboard vertical compaction */
.auth-content-panel{padding:10px 12px 12px;gap:8px;}
.auth-card-dashboard{width:100%;max-width:none;}
.shared-dashboard-panel--compact{padding:10px 12px 12px;gap:8px;}
.shared-dashboard-panel--compact .shared-dashboard-panel__title{font-size:14px;}
.shared-dashboard-panel--compact .auth-form{gap:8px;}
.shared-dashboard-panel--compact .auth-actions{gap:8px;margin-top:2px;}
.shared-dashboard-panel--compact .auth-actions-wrap{display:flex;align-items:center;justify-content:space-between;gap:10px;flex-wrap:nowrap;}
.shared-dashboard-panel--compact .auth-actions-wrap .button{padding-top:8px;padding-bottom:8px;min-height:36px;}
.shared-dashboard-panel--compact .auth-login-btn{margin-left:auto;}
.shared-dashboard-panel--compact .auth-back-link{margin-right:auto;}
[data-page="client_dashboard"] .content-engine-panel,[data-page="admin_control_panel"] .content-engine-panel{padding:10px 12px 12px;gap:8px;}
[data-page="client_dashboard"] .abc-info-panel,[data-page="admin_control_panel"] .abc-info-panel{padding:8px 10px;}
[data-page="client_dashboard"] .dashboard-grid.stats-grid,[data-page="admin_control_panel"] .dashboard-grid.stats-grid{gap:6px;}
[data-page="client_dashboard"] .shared-dashboard-panel,[data-page="admin_control_panel"] .shared-dashboard-panel{padding:10px 12px 12px;}
.private-client-account-page .client-request-preview,.business-client-account-page .client-request-preview,.private-partner-account-page .client-request-preview,.business-partner-account-page .client-request-preview{margin-top:8px;}
.private-client-account-page .client-request-preview-head,.business-client-account-page .client-request-preview-head,.private-partner-account-page .client-request-preview-head,.business-partner-account-page .client-request-preview-head{padding-top:6px;padding-bottom:6px;}
.private-client-account-page .client-request-card,.business-client-account-page .client-request-card,.private-partner-account-page .client-request-card,.business-partner-account-page .client-request-card{padding:8px 10px;}
.private-client-account-page .client-form-grid.compact-grid,.business-client-account-page .client-form-grid.compact-grid,.private-partner-account-page .client-form-grid.compact-grid,.business-partner-account-page .client-form-grid.compact-grid{gap:6px 8px;}
.private-client-account-page .client-form-field span,.business-client-account-page .client-form-field span,.private-partner-account-page .client-form-field span,.business-partner-account-page .client-form-field span{font-size:11px;margin-bottom:3px;}
.private-client-account-page .client-form-field input,.private-client-account-page .client-form-field select,.private-client-account-page .client-form-field textarea,.business-client-account-page .client-form-field input,.business-client-account-page .client-form-field select,.business-client-account-page .client-form-field textarea,.private-partner-account-page .client-form-field input,.private-partner-account-page .client-form-field select,.private-partner-account-page .client-form-field textarea,.business-partner-account-page .client-form-field input,.business-partner-account-page .client-form-field select,.business-partner-account-page .client-form-field textarea{min-height:34px;padding-top:7px;padding-bottom:7px;}
.private-client-account-page .request_wizard_actions,.business-client-account-page .request_wizard_actions,.private-partner-account-page .wizard-actions,.business-partner-account-page .wizard-actions{margin-top:6px;padding-top:6px;}
.private-partner-account-page [data-flow-title],.business-partner-account-page [data-flow-title]{display:block;}


/* === compact pass archiva 10 === */
.site-shell-main > .site-content-shell {
  margin-top: 8px;
}

.content-top-strip {
  gap: 8px;
  margin-bottom: 8px;
}

.content-meta-strip {
  gap: 4px;
}

.auth-shell-page .site-content-shell {
  padding-top: 8px;
}

.auth-shell-page .auth-card {
  max-width: 100%;
}

.auth-panel {
  max-width: 100%;
  margin: 12px auto;
}

.auth-card {
  padding: 12px 14px;
  border-radius: 12px;
}

.auth-form {
  gap: 8px;
}

.auth-form .client-form-field > span {
  margin-bottom: 4px;
}

.auth-form .client-form-field input,
.auth-form .client-form-field select,
.auth-form .client-form-field textarea {
  min-height: 42px;
}

.auth-actions.auth-actions-single-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: nowrap;
  margin-top: 10px;
}

.auth-actions-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.auth-actions-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.auth-login-btn {
  min-width: 112px;
}

.shared-dashboard-shell,
.admin-dashboard-heading-panel,
.panel.content-engine-panel,
.panel.compact-panel {
  padding-top: 12px;
  padding-bottom: 12px;
}

.section-head.compact-section-head,
.admin-heading-row {
  gap: 8px;
  margin-bottom: 8px;
}

.abc-zone-title,
.section-title,
.shared-dashboard-shell h2,
.admin-dashboard-heading-panel h2 {
  margin-bottom: 4px;
}

.shared-dashboard-shell .section-head,
.admin-dashboard-heading-panel .section-head {
  margin-bottom: 8px;
}

.auth-shell-page .panel.content-engine-panel,
.shared-dashboard-shell,
.admin-dashboard-heading-panel {
  max-width: 100%;
}

@media (max-width: 900px) {
  .auth-actions.auth-actions-single-line {
    flex-wrap: wrap;
    align-items: stretch;
  }

  .auth-actions-left,
  .auth-actions-right {
    width: 100%;
  }

  .auth-actions-right {
    margin-left: 0;
    justify-content: flex-end;
  }
}


/* === compact pass archiva 10.1 === */
.auth-panel{max-width:1160px;margin:8px auto;}
.auth-card{padding:8px 12px 10px;border-radius:12px;}
.auth-shell-page .site-content-shell{padding-top:4px;}
.auth-shell-page .panel.content-engine-panel,
.shared-dashboard-shell,
.admin-dashboard-heading-panel,
.panel.content-engine-panel,
.panel.compact-panel{padding-top:8px;padding-bottom:8px;}
.section-head.compact-section-head,
.admin-heading-row{gap:6px;margin-bottom:6px;}
.abc-zone-title,
.section-title,
.shared-dashboard-shell h2,
.admin-dashboard-heading-panel h2{margin:0 0 2px;line-height:1.1;}
.auth-form{gap:6px;}
.auth-form .client-form-field > span{margin-bottom:2px;}
.auth-form .client-form-field input,
.auth-form .client-form-field select,
.auth-form .client-form-field textarea{min-height:38px;padding-top:8px;padding-bottom:8px;}
.auth-actions.auth-actions-single-line{margin-top:6px;gap:8px;}
.auth-actions-left{gap:8px;flex-wrap:nowrap;}
.auth-actions-left .button,
.auth-actions-right .button,
.auth-actions-left a,
.auth-actions-right a{min-height:34px;padding-top:7px;padding-bottom:7px;}
.content-top-strip{padding:6px 10px;gap:6px;margin-bottom:6px;}
.content-meta-strip{gap:2px;}
.content-engine-panel,.abc-info-panel{padding-top:8px;padding-bottom:8px;}

/* === dashboard content full-width + topbar separator + title-right final fix === */
[data-page="client_dashboard"] .content-engine-panel,
[data-page="auth_login"] .content-engine-panel,
[data-page="auth_notice"] .content-engine-panel,
[data-page="admin_dashboard"] .content-engine-panel,
[data-page="admin_control_panel"] .content-engine-panel{
  width:100%;
  max-width:none;
  padding:10px 12px 12px;
}

[data-page="client_dashboard"] .auth-content-head-shell,
[data-page="auth_login"] .auth-content-head-shell,
[data-page="auth_notice"] .auth-content-head-shell,
[data-page="admin_dashboard"] .auth-content-head-shell,
[data-page="admin_control_panel"] .auth-content-head-shell{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:0 0 6px;
  margin:0 0 8px;
  border-bottom:1px solid rgba(255,255,255,.14);
}

[data-page="client_dashboard"] .auth-content-head-shell .auth-meta-stack,
[data-page="auth_login"] .auth-content-head-shell .auth-meta-stack,
[data-page="auth_notice"] .auth-content-head-shell .auth-meta-stack,
[data-page="admin_dashboard"] .auth-content-head-shell .auth-meta-stack,
[data-page="admin_control_panel"] .auth-content-head-shell .auth-meta-stack{
  width:100%;
  flex:1 1 auto;
  display:flex;
  align-items:center;
  flex-wrap:nowrap;
  gap:10px;
  min-width:0;
}

[data-page="client_dashboard"] .auth-content-head-shell .auth-identity-group,
[data-page="auth_login"] .auth-content-head-shell .auth-identity-group,
[data-page="auth_notice"] .auth-content-head-shell .auth-identity-group,
[data-page="admin_dashboard"] .auth-content-head-shell .auth-identity-group,
[data-page="admin_control_panel"] .auth-content-head-shell .auth-identity-group{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:10px 18px;
  flex-wrap:nowrap;
  min-width:0;
}

[data-page="client_dashboard"] .content-identity-line,
[data-page="auth_login"] .content-identity-line,
[data-page="auth_notice"] .content-identity-line,
[data-page="admin_dashboard"] .content-identity-line,
[data-page="admin_control_panel"] .content-identity-line{
  white-space:nowrap;
}

[data-page="client_dashboard"] .content-identity-line:last-child,
[data-page="auth_login"] .content-identity-line:last-child,
[data-page="auth_notice"] .content-identity-line:last-child,
[data-page="admin_dashboard"] .content-identity-line:last-child,
[data-page="admin_control_panel"] .content-identity-line:last-child{
  margin-left:auto;
  text-align:right;
}

[data-page="client_dashboard"] .auth-content-head-shell .auth-language-panel,
[data-page="auth_login"] .auth-content-head-shell .auth-language-panel,
[data-page="auth_notice"] .auth-content-head-shell .auth-language-panel,
[data-page="admin_dashboard"] .auth-content-head-shell .auth-language-panel,
[data-page="admin_control_panel"] .auth-content-head-shell .auth-language-panel{
  margin-left:12px;
  flex:0 0 auto;
}

[data-page="client_dashboard"] .auth-card-dashboard,
[data-page="auth_login"] .auth-card-dashboard,
[data-page="auth_notice"] .auth-card-dashboard,
[data-page="admin_dashboard"] .auth-card-dashboard,
[data-page="admin_control_panel"] .auth-card-dashboard{
  width:100%;
  max-width:none;
  margin:0;
}

[data-page="client_dashboard"] .shared-dashboard-panel__heading,
[data-page="auth_login"] .shared-dashboard-panel__heading,
[data-page="auth_notice"] .shared-dashboard-panel__heading,
[data-page="admin_dashboard"] .shared-dashboard-panel__heading,
[data-page="admin_control_panel"] .shared-dashboard-panel__heading{
  width:100%;
  display:flex;
  justify-content:flex-end;
  align-items:flex-end;
  padding-top:0;
  padding-bottom:4px;
  margin:0 0 4px;
}

[data-page="client_dashboard"] .shared-dashboard-panel__heading > div,
[data-page="auth_login"] .shared-dashboard-panel__heading > div,
[data-page="auth_notice"] .shared-dashboard-panel__heading > div,
[data-page="admin_dashboard"] .shared-dashboard-panel__heading > div,
[data-page="admin_control_panel"] .shared-dashboard-panel__heading > div{
  width:100%;
  text-align:right;
}

[data-page="client_dashboard"] .shared-dashboard-panel__title,
[data-page="auth_login"] .shared-dashboard-panel__title,
[data-page="auth_notice"] .shared-dashboard-panel__title,
[data-page="admin_dashboard"] .shared-dashboard-panel__title,
[data-page="admin_control_panel"] .shared-dashboard-panel__title{
  margin:0;
  text-align:right;
}

[data-page="client_dashboard"] .shared-dashboard-panel--compact,
[data-page="auth_login"] .shared-dashboard-panel--compact,
[data-page="auth_notice"] .shared-dashboard-panel--compact,
[data-page="admin_dashboard"] .shared-dashboard-panel--compact,
[data-page="admin_control_panel"] .shared-dashboard-panel--compact{
  padding:10px 12px 12px;
}

@media (max-width: 900px){
  [data-page="client_dashboard"] .auth-content-head-shell,
  [data-page="auth_login"] .auth-content-head-shell,
  [data-page="auth_notice"] .auth-content-head-shell,
  [data-page="admin_dashboard"] .auth-content-head-shell,
  [data-page="admin_control_panel"] .auth-content-head-shell{
    flex-direction:column;
    align-items:flex-start;
  }

  [data-page="client_dashboard"] .auth-content-head-shell .auth-meta-stack,
  [data-page="auth_login"] .auth-content-head-shell .auth-meta-stack,
  [data-page="auth_notice"] .auth-content-head-shell .auth-meta-stack,
  [data-page="admin_dashboard"] .auth-content-head-shell .auth-meta-stack,
  [data-page="admin_control_panel"] .auth-content-head-shell .auth-meta-stack,
  [data-page="client_dashboard"] .auth-content-head-shell .auth-identity-group,
  [data-page="auth_login"] .auth-content-head-shell .auth-identity-group,
  [data-page="auth_notice"] .auth-content-head-shell .auth-identity-group,
  [data-page="admin_dashboard"] .auth-content-head-shell .auth-identity-group,
  [data-page="admin_control_panel"] .auth-content-head-shell .auth-identity-group{
    width:100%;
    flex-wrap:wrap;
  }

  [data-page="client_dashboard"] .content-identity-line:last-child,
  [data-page="auth_login"] .content-identity-line:last-child,
  [data-page="auth_notice"] .content-identity-line:last-child,
  [data-page="admin_dashboard"] .content-identity-line:last-child,
  [data-page="admin_control_panel"] .content-identity-line:last-child{
    margin-left:0;
    text-align:left;
  }

  [data-page="client_dashboard"] .auth-content-head-shell .auth-language-panel,
  [data-page="auth_login"] .auth-content-head-shell .auth-language-panel,
  [data-page="auth_notice"] .auth-content-head-shell .auth-language-panel,
  [data-page="admin_dashboard"] .auth-content-head-shell .auth-language-panel,
  [data-page="admin_control_panel"] .auth-content-head-shell .auth-language-panel{
    margin-left:0;
  }
}


/* === FINAL DASHBOARD BUG FIX 2026-04-18 === */
[data-page="client_dashboard"],
[data-page="auth_login"],
[data-page="auth_notice"],
[data-page="admin_dashboard"],
[data-page="admin_control_panel"]{
  margin-top:0 !important;
  padding-top:0 !important;
}

[data-page="client_dashboard"] .page-shell,
[data-page="auth_login"] .page-shell,
[data-page="auth_notice"] .page-shell,
[data-page="admin_dashboard"] .page-shell,
[data-page="admin_control_panel"] .page-shell{
  padding-top:0 !important;
}

[data-page="client_dashboard"] .site-shell-main,
[data-page="auth_login"] .site-shell-main,
[data-page="auth_notice"] .site-shell-main,
[data-page="admin_dashboard"] .site-shell-main,
[data-page="admin_control_panel"] .site-shell-main,
[data-page="client_dashboard"] .site-shell-main > .site-content-shell,
[data-page="auth_login"] .site-shell-main > .site-content-shell,
[data-page="auth_notice"] .site-shell-main > .site-content-shell,
[data-page="admin_dashboard"] .site-shell-main > .site-content-shell,
[data-page="admin_control_panel"] .site-shell-main > .site-content-shell{
  margin-top:0 !important;
  padding-top:0 !important;
  gap:0 !important;
}

[data-page="client_dashboard"] .site-header,
[data-page="auth_login"] .site-header,
[data-page="auth_notice"] .site-header,
[data-page="admin_dashboard"] .site-header,
[data-page="admin_control_panel"] .site-header{
  margin-top:0 !important;
}

[data-page="client_dashboard"] .shared-dashboard-shell,
[data-page="auth_login"] .shared-dashboard-shell,
[data-page="auth_notice"] .shared-dashboard-shell,
[data-page="admin_dashboard"] .shared-dashboard-shell,
[data-page="admin_control_panel"] .shared-dashboard-shell{
  width:100% !important;
  max-width:none !important;
  display:grid !important;
  justify-items:stretch !important;
  align-content:start !important;
  gap:8px !important;
  padding-top:6px !important;
  padding-bottom:8px !important;
}

[data-page="client_dashboard"] .auth-content-head-shell,
[data-page="auth_login"] .auth-content-head-shell,
[data-page="auth_notice"] .auth-content-head-shell,
[data-page="admin_dashboard"] .auth-content-head-shell,
[data-page="admin_control_panel"] .auth-content-head-shell{
  width:100% !important;
  max-width:none !important;
  margin:0 0 6px 0 !important;
  padding:0 0 6px 0 !important;
  border-bottom:1px solid var(--line) !important;
}

[data-page="client_dashboard"] .auth-card-dashboard,
[data-page="auth_login"] .auth-card-dashboard,
[data-page="auth_notice"] .auth-card-dashboard,
[data-page="admin_dashboard"] .auth-card-dashboard,
[data-page="admin_control_panel"] .auth-card-dashboard,
[data-page="client_dashboard"] .shared-dashboard-panel,
[data-page="auth_login"] .shared-dashboard-panel,
[data-page="auth_notice"] .shared-dashboard-panel,
[data-page="admin_dashboard"] .shared-dashboard-panel,
[data-page="admin_control_panel"] .shared-dashboard-panel,
[data-page="client_dashboard"] .client-login-panel,
[data-page="client_dashboard"] .partner-login-panel,
[data-page="client_dashboard"] .admin-login-panel{
  width:min(100%, 620px) !important;
  max-width:620px !important;
  margin:0 auto !important;
}

[data-page="client_dashboard"] .shared-dashboard-panel__heading,
[data-page="auth_login"] .shared-dashboard-panel__heading,
[data-page="auth_notice"] .shared-dashboard-panel__heading,
[data-page="admin_dashboard"] .shared-dashboard-panel__heading,
[data-page="admin_control_panel"] .shared-dashboard-panel__heading{
  margin:0 0 2px 0 !important;
  padding:0 0 2px 0 !important;
}

[data-page="client_dashboard"] .shared-dashboard-panel--compact,
[data-page="auth_login"] .shared-dashboard-panel--compact,
[data-page="auth_notice"] .shared-dashboard-panel--compact,
[data-page="admin_dashboard"] .shared-dashboard-panel--compact,
[data-page="admin_control_panel"] .shared-dashboard-panel--compact{
  padding:8px 12px 10px !important;
}

[data-page="client_dashboard"] .auth-form,
[data-page="auth_login"] .auth-form,
[data-page="auth_notice"] .auth-form,
[data-page="admin_dashboard"] .auth-form,
[data-page="admin_control_panel"] .auth-form{
  gap:10px !important;
}

[data-page="client_dashboard"] .auth-form input,
[data-page="auth_login"] .auth-form input,
[data-page="auth_notice"] .auth-form input,
[data-page="admin_dashboard"] .auth-form input,
[data-page="admin_control_panel"] .auth-form input{
  min-height:42px !important;
}

[data-page="client_dashboard"] .auth-actions,
[data-page="auth_login"] .auth-actions,
[data-page="auth_notice"] .auth-actions,
[data-page="admin_dashboard"] .auth-actions,
[data-page="admin_control_panel"] .auth-actions{
  margin-top:8px !important;
  gap:8px !important;
}

/* === DASHBOARD HEADER PARITY + TOPBAR SEPARATOR FINAL 2026-04-18 === */
[data-page="client_dashboard"],
[data-page="auth_login"],
[data-page="auth_notice"],
[data-page="admin_dashboard"],
[data-page="admin_control_panel"]{
  margin-top:0 !important;
  padding-top:0 !important;
}

[data-page="client_dashboard"] .page-shell,
[data-page="auth_login"] .page-shell,
[data-page="auth_notice"] .page-shell,
[data-page="admin_dashboard"] .page-shell,
[data-page="admin_control_panel"] .page-shell{
  padding-top:8px !important;
}

[data-page="client_dashboard"] .site-shell-main,
[data-page="auth_login"] .site-shell-main,
[data-page="auth_notice"] .site-shell-main,
[data-page="admin_dashboard"] .site-shell-main,
[data-page="admin_control_panel"] .site-shell-main,
[data-page="client_dashboard"] .site-shell-main > .site-content-shell,
[data-page="auth_login"] .site-shell-main > .site-content-shell,
[data-page="auth_notice"] .site-shell-main > .site-content-shell,
[data-page="admin_dashboard"] .site-shell-main > .site-content-shell,
[data-page="admin_control_panel"] .site-shell-main > .site-content-shell{
  margin-top:8px !important;
  padding-top:0 !important;
  gap:8px !important;
}

[data-page="client_dashboard"] .content-top-strip,
[data-page="auth_login"] .content-top-strip,
[data-page="auth_notice"] .content-top-strip,
[data-page="admin_dashboard"] .content-top-strip,
[data-page="admin_control_panel"] .content-top-strip,
[data-page="client_dashboard"] .auth-content-head-shell,
[data-page="auth_login"] .auth-content-head-shell,
[data-page="auth_notice"] .auth-content-head-shell,
[data-page="admin_dashboard"] .auth-content-head-shell,
[data-page="admin_control_panel"] .auth-content-head-shell{
  width:100% !important;
  border-bottom:1px solid rgba(255,255,255,.14) !important;
  margin-bottom:8px !important;
  padding-bottom:8px !important;
}

[data-page="client_dashboard"] .shared-dashboard-shell,
[data-page="auth_login"] .shared-dashboard-shell,
[data-page="auth_notice"] .shared-dashboard-shell,
[data-page="admin_dashboard"] .shared-dashboard-shell,
[data-page="admin_control_panel"] .shared-dashboard-shell,
[data-page="client_dashboard"] .auth-panel,
[data-page="auth_login"] .auth-panel,
[data-page="auth_notice"] .auth-panel,
[data-page="admin_dashboard"] .auth-panel,
[data-page="admin_control_panel"] .auth-panel{
  margin-left:auto !important;
  margin-right:auto !important;
}

/* === INDEX TOPBAR PARITY WITH DASHBOARDS 2026-04-18 === */
.compact-index-page .content-top-strip{
  margin-bottom:2px !important;
  padding-top:6px !important;
  padding-bottom:6px !important;
  border-bottom:1px solid rgba(255,255,255,.14) !important;
}
.compact-index-page .content-engine-panel{
  padding-top:4px !important;
  gap:8px !important;
}
.compact-index-page .content-integrated-nav,
.compact-index-page .dashboard-nav,
.compact-index-page .abc-home-six-grid,
.compact-index-page .abc-info-panel{
  margin-top:0 !important;
}
.compact-index-page .separated-content-nav-row{
  padding-top:4px !important;
}


/* FINAL RUNTIME NEUTRALIZER 2026-04-18 */
.content-integrated-nav{border-bottom:none !important;}
.private-client-account-page .content-top-strip + .client-request-preview,.business-client-account-page .content-top-strip + .client-request-preview,.private-partner-account-page .content-top-strip + .client-request-preview,.business-partner-account-page .content-top-strip + .client-request-preview{border-top:none !important;padding-top:0 !important;}
[data-page="index"] .page-shell,[data-page="client_dashboard"] .page-shell,[data-page="admin_control_panel"] .page-shell,.private-client-account-page .page-shell,.business-client-account-page .page-shell,.private-partner-account-page .page-shell,.business-partner-account-page .page-shell{padding-top:8px !important;}


/* FLOW RESET TOTAL */
.flow-reset-shell .auth-message{display:none !important;}


/* runtime content layer lock */
.panel.content-engine-panel,.panel.clean-main-panel{display:flex;flex-direction:column;align-items:stretch;justify-content:flex-start;}
.panel.content-engine-panel > .content-top-strip,.panel.clean-main-panel > .content-top-strip{order:1;}
.panel.content-engine-panel > .content-body-layer,.panel.clean-main-panel > .content-body-layer{order:2;}
.content-body-layer > .content-integrated-nav,.content-body-layer > .shared-auth-context-panel,.content-body-layer > .abc-info-panel,.content-body-layer > .client-request-preview,.content-body-layer > .auth-card,.content-body-layer > .technical-panel{width:100%;max-width:100%;}

/* === ABC FLOW HEADER + IDENTITY TUNING === */
.account-flow-shell__head{
  gap:10px;
  margin-bottom:14px;
}

.account-flow-shell__title{
  font-size:1.18rem;
  line-height:1.15;
  letter-spacing:0.01em;
  margin:0;
}

.account-flow-shell__step{
  margin-top:2px;
  font-size:0.84rem;
}

.account-flow-shell__badge{
  padding:4px 10px;
  line-height:1.05;
  min-height:auto;
}

.account-flow-shell__badge::before,
.account-flow-shell__badge::after{
  top:4px;
  bottom:4px;
}

.compact-panel--tight{
  padding:14px 16px;
}

.compact-section-head--tight{
  margin-bottom:10px;
  padding-bottom:0;
  border-bottom:0;
}

.compact-section-title--tight{
  font-size:0.92rem;
  line-height:1.1;
  margin:0;
}

.compact-grid--identity{
  grid-template-columns:minmax(260px, 420px) minmax(180px, 240px);
  align-items:end;
  column-gap:14px;
}

.compact-field{
  gap:6px;
}

.compact-field--name{
  max-width:420px;
}

.compact-field--birthdate{
  max-width:240px;
}

.compact-label--small{
  font-size:0.84rem;
}

.compact-input--tight{
  min-height:42px;
  padding:10px 12px;
}

.compact-field.is-invalid .compact-input--tight{
  border-color:#c92a2a;
  box-shadow:0 0 0 1px rgba(201,42,42,0.18);
}

@media (max-width: 900px){
  .compact-grid--identity{
    grid-template-columns:1fr;
  }

  .compact-field--name,
  .compact-field--birthdate{
    max-width:none;
  }
}


/* ==================================================
THEABC UI META CONTENT TOPBAR + FLOW COMPLETE STEP FINAL LOCK
STATUS: ACTIVE / GLOBAL UI LAYER STABILIZATION
ROLE: separates meta bar from header/content and keeps flow submit at final visible field.
================================================== */
.content-top-strip.meta-content-topbar-modul,
.content-top-strip[data-meta-content-topbar="true"],
.meta-content-topbar-modul{
  display:grid !important;
  grid-template-columns:minmax(0,1fr) auto !important;
  align-items:center !important;
  gap:8px 12px !important;
  width:100% !important;
  max-width:var(--abc_universal_page_width, var(--abc-wide-shell, min(1440px, calc(100vw - clamp(16px, 3.2vw, 56px))))) !important;
  margin:0 auto 8px auto !important;
  padding:7px 10px !important;
  min-height:auto !important;
  line-height:1.2 !important;
  border:1px solid rgba(148,163,184,.20) !important;
  border-radius:14px !important;
  background:rgba(255,255,255,.74) !important;
  box-shadow:0 8px 24px rgba(15,23,42,.06) !important;
  overflow:visible !important;
}
.content-top-strip .meta-content-topbar-left,
.meta-content-topbar-left{min-width:0 !important;width:100% !important;display:block !important;}
.content-top-strip .meta-content-topbar-grid,
.meta-content-topbar-grid{
  display:grid !important;
  grid-template-columns:repeat(4, minmax(0, auto)) !important;
  align-items:center !important;
  justify-content:start !important;
  gap:5px 12px !important;
  width:100% !important;
  min-width:0 !important;
}
.content-meta-item{
  display:inline-flex !important;
  align-items:center !important;
  gap:3px !important;
  min-width:0 !important;
  max-width:100% !important;
  white-space:nowrap !important;
  line-height:1.2 !important;
  font-size:12px !important;
}
.content-meta-label,.meta-content-topbar-label{font-weight:700 !important;color:#334155 !important;white-space:nowrap !important;}
.content-meta-separator,.meta-content-topbar-separator{color:#64748b !important;white-space:nowrap !important;}
.content-meta-value,.meta-content-topbar-value{font-weight:600 !important;color:#0f172a !important;white-space:nowrap !important;overflow:hidden !important;text-overflow:ellipsis !important;}
.content-meta-value-accent{color:#1d4ed8 !important;}
.content-top-strip .content-meta-spacer{display:none !important;}
.content-top-strip .meta-content-topbar-right,
.meta-content-topbar-right{display:flex !important;align-items:center !important;justify-content:flex-end !important;min-width:max-content !important;margin-left:0 !important;}
.content-top-strip .language-switcher-card,
.content-top-strip .compact-language-switcher,
.meta-content-topbar-language{margin:0 !important;min-height:28px !important;display:flex !important;align-items:center !important;}
.content-top-strip .lang-flag-btn{width:28px !important;height:24px !important;line-height:1 !important;}
.abc-flow-panel-head-hidden{display:none !important;}
body[data-abc-flow-complete-step-submit-lock="true"] .flow-reset-shell,
body[data-abc-flow-submit-anchor-v61="true"] .flow-reset-shell,
body[data-abc-flow-complete-step-submit-lock="true"] .flow-reset-empty-surface,
body[data-abc-flow-submit-anchor-v61="true"] .flow-reset-empty-surface{
  display:flex !important;
  flex-direction:column !important;
  gap:10px !important;
  width:100% !important;
  max-width:var(--abc_universal_page_width, var(--abc-wide-shell, min(1440px, calc(100vw - clamp(16px, 3.2vw, 56px))))) !important;
  margin-left:auto !important;
  margin-right:auto !important;
  overflow:visible !important;
}
.abc-complete-step-submit-zone,
.abc-v61-submit-zone,
.abc-v60-submit-zone,
.abc-v59-submit-zone{
  order:9999 !important;
  width:100% !important;
  display:flex !important;
  justify-content:flex-end !important;
  align-items:center !important;
  margin:10px 0 0 0 !important;
  padding:10px 0 0 0 !important;
  border-top:1px solid rgba(148,163,184,.22) !important;
  position:static !important;
  inset:auto !important;
  transform:none !important;
}
.abc-complete-step-submit,
.abc-v61-final-submit,
.abc-v60-final-submit,
.abc-v59-final-submit{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:38px !important;
  padding:10px 16px !important;
  border-radius:12px !important;
  border:0 !important;
  background:#1d4ed8 !important;
  color:#fff !important;
  font-weight:800 !important;
  cursor:pointer !important;
  position:static !important;
  inset:auto !important;
  transform:none !important;
  float:none !important;
}
.abc-complete-step-legacy-hidden,
.abc-v61-legacy-control-hidden,
.abc-v60-legacy-control-hidden,
.abc-v59-legacy-flow-control-hidden{
  display:none !important;
  visibility:hidden !important;
  pointer-events:none !important;
}
@media (max-width:980px){
  .content-top-strip.meta-content-topbar-modul,
  .content-top-strip[data-meta-content-topbar="true"],
  .meta-content-topbar-modul{grid-template-columns:1fr !important;align-items:start !important;}
  .content-top-strip .meta-content-topbar-grid,
  .meta-content-topbar-grid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}
  .content-top-strip .meta-content-topbar-right,
  .meta-content-topbar-right{justify-content:flex-start !important;}
  .content-meta-item{white-space:normal !important;}
}
@media (max-width:560px){
  .content-top-strip .meta-content-topbar-grid,
  .meta-content-topbar-grid{grid-template-columns:1fr !important;}
}
/* END THEABC UI META CONTENT TOPBAR + FLOW COMPLETE STEP FINAL LOCK */


/* =========================================================
FILE: web/css/style.css
PATCH: ASLSLS_1_CLEAN_GLOBAL_BASE
STATUS: ACTIVE CLEAN
ROLE: global base after cleanup. Keeps public/admin/client/partner layout stable.
DOES NOT: no debug labels, no red/pink global frame, no fake outer auth page.
========================================================= */
html, body { max-width: 100%; overflow-x: hidden !important; }
body { min-height: 100%; }
*, *::before, *::after { box-sizing: border-box; }
.page-shell,.compact-page,.compact-index-page{ width:min(100%, 1920px) !important; max-width:100% !important; min-height:100dvh; margin:0 auto !important; overflow-x:hidden !important; border:0 !important; outline:0 !important; box-shadow:none !important; }
.site-header,.content-top-strip,.content-engine-panel,.clean-main-panel,.site-footer{ max-width:100% !important; min-width:0 !important; overflow-x:hidden !important; }
.page-shell::before,.page-shell::after,.site-header::before,.site-header::after,.content-top-strip::before,.content-top-strip::after,.content-engine-panel::before,.content-engine-panel::after,.clean-main-panel::before,.clean-main-panel::after,.site-footer::before,.site-footer::after{ display:none !important; content:none !important; }
@media (max-width:760px){ .page-shell,.compact-page,.compact-index-page{ padding-left:10px !important; padding-right:10px !important; } main,.abc-stack{ width:100% !important; min-width:0 !important; overflow-x:hidden !important; } }
