:root {
    --navy: #1d3474;
    --navy-dark: #142653;
    --pink: #e5007d;
    --bg: #f4f6fa;
    --card: #ffffff;
    --border: #e2e7ef;
    --text: #1f2937;
    --muted: #6b7280;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
}

.app-shell {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 260px;

    display: flex;
    flex-direction: column;

    background:
        linear-gradient(
            180deg,
            var(--navy-dark) 0%,
            var(--navy) 100%
        );

    color: white;
    z-index: 1000;
}

.sidebar-brand {
    padding: 28px 24px 24px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    text-align: center;
}

.sidebar-logo {
    width: 180px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.sidebar-brand {
    padding: 30px 20px 26px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    text-align: center;
}

.sidebar-nav {
    padding: 24px 14px;
    flex: 1;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;

    color: rgba(255,255,255,.88);
    text-decoration: none;

    padding: 13px 16px;
    margin-bottom: 7px;

    border-radius: 10px;
    font-weight: 600;

    transition: .2s ease;
}

.sidebar-link:hover {
    color: white;
    background: rgba(255,255,255,.11);
}

.sidebar-link span:first-child {
    width: 24px;
    text-align: center;
}

.sidebar-footer {
    padding: 18px;
    border-top: 1px solid rgba(255,255,255,.12);
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 14px;
}

.sidebar-user-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.12);
    border-radius: 50%;
}

.sidebar-user-name {
    font-weight: 700;
    font-size: .95rem;
}

.sidebar-user-role {
    font-size: .75rem;
    color: rgba(255,255,255,.65);
}

.sidebar-logout {
    width: 100%;

    border: 1px solid rgba(255,255,255,.35);
    background: transparent;
    color: white;

    border-radius: 9px;
    padding: 9px;

    font-size: .9rem;
}

.sidebar-logout:hover {
    background: rgba(255,255,255,.1);
}

.main-content {
    margin-left: 260px;
    width: calc(100% - 260px);
    min-height: 100vh;
}

.topbar {
    height: 72px;

    display: flex;
    align-items: center;

    background: white;
    border-bottom: 1px solid var(--border);

    padding: 0 32px;
}

.topbar-title {
    color: var(--navy);
    font-weight: 700;
    font-size: 1.05rem;
}

.content-wrapper {
    padding: 32px;
}

.page-title {
    color: var(--navy);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.page-subtitle {
    color: var(--muted);
    margin-top: 5px;
}

.card {
    border: 1px solid var(--border);
    border-radius: 14px;
}

.btn-agogi {
    background: var(--navy);
    border-color: var(--navy);
    color: white;
}

.btn-agogi:hover {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
    color: white;
}

.btn-agogi-pink {
    background: var(--pink);
    border-color: var(--pink);
    color: white;
}

.btn-agogi-pink:hover {
    opacity: .9;
    color: white;
}

.form-control,
.form-select {
    border-radius: 9px;
    border-color: #d7dde8;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 .2rem rgba(29,52,116,.12);
}

@media (max-width: 900px) {

    .sidebar {
        position: relative;
        width: 100%;
        min-height: auto;
    }

    .app-shell {
        display: block;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }

    .sidebar-footer {
        display: none;
    }

    .content-wrapper {
        padding: 20px;
    }
}


/* =========================
   PROFESSIONAL DASHBOARD
   ========================= */

.dashboard-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.dashboard-eyebrow {
    color: var(--pink);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .12em;
    margin-bottom: 7px;
}

.dashboard-new-btn {
    padding: 11px 20px;
    border-radius: 10px;
    font-weight: 700;
}

.dashboard-toolbar {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    width: min(520px, 100%);
}

.search-icon {
    color: var(--navy);
    font-size: 1.3rem;
}

.search-box input {
    width: 100%;
    border: 0;
    outline: none;
    font-size: .95rem;
    background: transparent;
}

.children-count {
    white-space: nowrap;
    color: var(--muted);
    font-size: .9rem;
    font-weight: 600;
}

.children-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fill, minmax(330px, 1fr));
    gap: 20px;
}

.child-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px;

    box-shadow:
        0 3px 14px rgba(20, 38, 83, .05);

    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

.child-card:hover {
    transform: translateY(-2px);
    border-color: #cdd5e3;

    box-shadow:
        0 10px 28px rgba(20, 38, 83, .09);
}

.child-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.child-avatar {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 50px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--navy-dark)
        );

    color: white;
    font-weight: 800;
    font-size: 1rem;
}

.child-main-info h3 {
    margin: 0 0 4px;
    color: var(--navy-dark);
    font-size: 1.08rem;
    font-weight: 750;
}

.child-code {
    color: var(--muted);
    font-size: .82rem;
}

.child-details {
    border-top: 1px solid #edf0f5;
    border-bottom: 1px solid #edf0f5;
    padding: 13px 0;
}

.child-detail-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 5px 0;
}

.detail-label {
    color: var(--muted);
    font-size: .84rem;
}

.detail-value {
    text-align: right;
    font-size: .86rem;
    font-weight: 600;
}

.child-card-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 17px;
}

.child-card-footer .btn {
    border-radius: 9px;
    font-size: .87rem;
    font-weight: 600;
    padding: 8px 14px;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    background: white;
    border: 1px dashed #cbd3df;
    border-radius: 16px;
    padding: 60px 30px;
}

.empty-state-icon {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.empty-state h3 {
    color: var(--navy);
}

.empty-state p {
    color: var(--muted);
}

@media (max-width: 700px) {

    .dashboard-header {
        display: block;
    }

    .dashboard-new-btn {
        margin-top: 18px;
    }

    .dashboard-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .children-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== FINAL APP SHELL ===== */

.sidebar {
    width: 245px;
    background: linear-gradient(
        180deg,
        #102958 0%,
        #17356f 100%
    );
}

.main-content {
    margin-left: 245px;
    width: calc(100% - 245px);
}

.sidebar-brand {
    padding: 28px 22px;
}

.sidebar-logo {
    width: 185px;
}

.sidebar-link {
    min-height: 52px;
    padding: 14px 16px;
    border-radius: 11px;
}

.sidebar-link i {
    width: 24px;
    font-size: 1.15rem;
    text-align: center;
}

.sidebar-link.active {
    background: linear-gradient(
        135deg,
        #ef0a7b,
        #df006f
    );
    color: #fff;
    box-shadow: 0 8px 20px rgba(229,0,125,.24);
}

.sidebar-link.active:hover {
    background: linear-gradient(
        135deg,
        #ef0a7b,
        #df006f
    );
}

.sidebar-user-icon {
    font-size: 1.2rem;
}

.sidebar-logout {
    min-height: 44px;
}

.topbar {
    height: 74px;
    justify-content: space-between;
    padding: 0 34px;
}

.topbar-user {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--navy-dark);
    font-size: .9rem;
}

.topbar-avatar {
    width: 34px;
    height: 34px;
    border: 1px solid #dce2ec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-wrapper {
    padding: 38px 42px;
}

@media (max-width: 900px) {
    .main-content {
        margin-left: 0;
        width: 100%;
    }
}

/* ===== TYPOGRAPHY POLISH ===== */

body {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    letter-spacing: -0.01em;
}

.page-title {
    font-weight: 800;
    letter-spacing: -0.035em;
}

.sidebar-link {
    font-weight: 600;
}

.topbar-title {
    font-weight: 700;
}

.child-main-info h3 {
    font-weight: 700;
}

/* FIX DASHBOARD TOOLBAR */

.dashboard-tools {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 280px !important;
    gap: 18px !important;
    width: 100% !important;
    margin: 22px 0 28px !important;
}

.dashboard-search-card {
    width: 100% !important;
    min-height: 62px;
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
}

.dashboard-search-card input {
    display: block;
    width: 100% !important;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
}

.dashboard-count-card {
    min-height: 62px;
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
}

@media (max-width: 900px) {
    .dashboard-tools {
        grid-template-columns: 1fr !important;
    }
}

/* SIDEBAR BRAND IMAGE */

.sidebar-brand {
    padding: 18px 14px 20px;
}

.sidebar-logo {
    width: 100%;
    max-width: 205px;
    height: auto;
    display: block;
    margin: 0 auto;

    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.sidebar-brand {
    padding: 18px 16px;
}

.sidebar-logo {
    width: 100%;
    max-width: 190px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 14px;
    box-shadow: none;
}

/* ===== BRAND WATERMARK ===== */

.main-content::before {
    content: "";
    position: fixed;
    right: 70px;
    top: 170px;
    width: 520px;
    height: 560px;

    background-image: url("/static/reports/logo-sidebar.8401582ebd85.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    opacity: 0.035;
    filter: grayscale(1);

    pointer-events: none;
    z-index: 0;
}

.topbar,
.content-wrapper {
    position: relative;
    z-index: 1;
}

/* ===== PERSON WATERMARK ===== */

.main-content::before {
    content: "";
    position: fixed;

    right: 110px;
    top: 250px;

    width: 480px;
    height: 560px;

    background-image: url("/static/reports/person-watermark.ba6edfb2c353.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    opacity: 0.04;

    pointer-events: none;
    z-index: 0;
}

.topbar,
.content-wrapper {
    position: relative;
    z-index: 1;
}

/* ===== REPORT WIZARD ===== */

.wizard-page {
    max-width: 1100px;
    margin: 0 auto;
}

.wizard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 18px;
}

.wizard-title {
    margin: 0;
    color: var(--navy-dark);
    font-size: 2rem;
    font-weight: 800;
}

.wizard-subtitle {
    margin: 6px 0 0;
    color: var(--muted);
}

.wizard-step-badge {
    background: white;
    border: 1px solid var(--border);
    color: var(--navy);
    border-radius: 999px;
    padding: 9px 14px;
    font-weight: 700;
    font-size: .85rem;
}

.wizard-progress {
    height: 7px;
    background: #e8ebf2;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 24px;
}

.wizard-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--pink), #ff4ba0);
    border-radius: 999px;
}

.wizard-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(20, 38, 83, .06);
}

.wizard-card-body {
    padding: 28px;
}

/* ===== REPORT WIZARD QUESTIONS ===== */

.wizard-card-body > form > .mb-4 {
    margin-bottom: 32px !important;
}

.wizard-card-body > form > .mb-4 > h4 {
    color: var(--navy);
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0 0 16px !important;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.wizard-question {
    background: #f9fafc;
    border: 1px solid #e4e8f0;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 16px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.wizard-question:focus-within {
    border-color: rgba(229, 0, 125, .35);
    box-shadow: 0 5px 18px rgba(20, 38, 83, .06);
}

.wizard-question-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.wizard-question-number {
    width: 30px;
    height: 30px;
    min-width: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--navy);
    color: white;

    border-radius: 8px;

    font-size: .82rem;
    font-weight: 800;
}

.wizard-question-title {
    color: var(--navy-dark);
    font-size: 1rem;
    line-height: 1.45;
    font-weight: 700;
    padding-top: 3px;
}

.wizard-field {
    margin-top: 14px;
}

.wizard-field-label {
    display: block;
    margin-bottom: 7px;

    color: #4b5563;
    font-size: .82rem;
    font-weight: 700;
}

.wizard-optional {
    margin-left: 6px;
    color: #9ca3af;
    font-size: .72rem;
    font-weight: 500;
}

.wizard-select {
    min-height: 46px;
    background-color: white;
}

.wizard-textarea {
    min-height: 88px;
    resize: vertical;
    background: white;
}

.wizard-select:focus,
.wizard-textarea:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 .2rem rgba(229, 0, 125, .08);
}

.wizard-textarea::placeholder {
    color: #a0a7b2;
}

@media (max-width: 768px) {
    .wizard-question {
        padding: 16px;
    }
}

/* ===== WIZARD ACTIONS ===== */

.wizard-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    margin-top: 28px;
    padding-top: 22px;

    border-top: 1px solid var(--border);
}

.wizard-actions-right {
    display: flex;
    gap: 10px;
}

.wizard-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 44px;
    padding: 10px 16px;

    border-radius: 10px;
    border: 1px solid transparent;

    text-decoration: none;
    font-size: .88rem;
    font-weight: 700;

    transition: .18s ease;
}

.wizard-btn-secondary {
    background: white;
    border-color: #d6dce7;
    color: var(--navy);
}

.wizard-btn-secondary:hover {
    background: #f5f7fa;
    color: var(--navy);
}

.wizard-btn-save {
    background: white;
    border-color: var(--navy);
    color: var(--navy);
}

.wizard-btn-save:hover {
    background: #f3f5fa;
}

.wizard-btn-primary {
    background: var(--pink);
    border-color: var(--pink);
    color: white;
}

.wizard-btn-primary:hover {
    background: #cf006f;
    border-color: #cf006f;
    color: white;
}

@media (max-width: 700px) {
    .wizard-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .wizard-actions-right {
        flex-direction: column;
    }

    .wizard-btn {
        width: 100%;
    }
}

/* ===== THERAPIST TEAM ===== */

.therapist-section {
    margin-top: 34px;
    padding: 24px;

    background: #fbfcfe;
    border: 1px solid var(--border);
    border-radius: 16px;
}

.therapist-section-header {
    margin-bottom: 20px;
}

.therapist-section-title {
    margin: 2px 0 5px;
    color: var(--navy-dark);
    font-size: 1.25rem;
    font-weight: 800;
}

.therapist-section-subtitle {
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
}

.therapist-row {
    background: white !important;
    border: 1px solid #e4e8f0 !important;
    border-radius: 12px !important;
    padding: 18px !important;
}

.therapist-row .form-label {
    color: #4b5563;
    font-size: .8rem;
    font-weight: 700;
}

.remove-therapist {
    width: 40px;
    height: 40px;

    border-radius: 9px;
    border: 1px solid #f1c7d9;

    background: #fff5f8;
    color: var(--pink);

    font-weight: 800;
}

.remove-therapist:hover {
    background: var(--pink);
    color: white;
    border-color: var(--pink);
}

.add-therapist-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 15px;

    border-radius: 10px;
    border: 1px solid var(--pink);

    background: white;
    color: var(--pink);

    font-size: .86rem;
    font-weight: 700;
}

.add-therapist-btn:hover {
    background: var(--pink);
    color: white;
}

/* ===== FOLDER FORM ===== */

.form-page {
    max-width: 1050px;
    margin: 0 auto;
}

.form-page-header {
    margin-bottom: 24px;
}

.form-page-title {
    margin: 0;
    color: var(--navy-dark);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.form-page-subtitle {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: .95rem;
}

.form-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(20, 38, 83, .06);
}

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

.form-field {
    min-width: 0;
}

.form-field-label {
    display: block;
    margin-bottom: 7px;
    color: #4b5563;
    font-size: .83rem;
    font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 46px;

    border: 1px solid #d7dde8;
    border-radius: 10px;

    padding: 10px 12px;

    background: white;
    color: var(--text);

    font-family: inherit;
    font-size: .95rem;

    outline: none;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 .2rem rgba(229, 0, 125, .08);
}

.form-help {
    margin-top: 5px;
    color: var(--muted);
    font-size: .75rem;
}

.form-error {
    margin-top: 5px;
    color: #b42318;
    font-size: .78rem;
    font-weight: 600;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;

    margin-top: 28px;
    padding-top: 22px;

    border-top: 1px solid var(--border);
}

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

    .form-actions {
        flex-direction: column-reverse;
    }

    .form-actions .wizard-btn {
        width: 100%;
    }
}

/* ===== NEW CENTER FORM ===== */

#newCenterForm > .card {
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(20, 38, 83, .06) !important;
    overflow: hidden;
}

#newCenterForm .card-body {
    padding: 26px;
}

#newCenterForm h4 {
    color: var(--navy-dark);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 22px !important;
}

#newCenterForm .form-label {
    color: #4b5563;
    font-size: .83rem;
    font-weight: 700;
    margin-bottom: 7px;
}

#newCenterForm .form-control {
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid #d7dde8;
    border-radius: 10px;
}

#newCenterForm .form-control:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 .2rem rgba(229, 0, 125, .08);
}

/* ===== EXISTING CENTERS ===== */

.centers-panel {
    margin-top: 24px;

    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;

    box-shadow: 0 8px 24px rgba(20, 38, 83, .06);
    overflow: hidden;
}

.centers-panel-header {
    padding: 22px 24px 16px;
    border-bottom: 1px solid var(--border);
}

.centers-panel-title {
    margin: 2px 0 0;
    color: var(--navy-dark);
    font-size: 1.25rem;
    font-weight: 800;
}

.centers-panel-body {
    padding: 20px;
}

.center-item {
    padding: 18px;

    border: 1px solid #e4e8f0;
    border-radius: 13px;

    background: #fbfcfe;

    margin-bottom: 14px;
}

.center-item:last-child {
    margin-bottom: 0;
}

.center-item-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.center-item-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 44px;

    border-radius: 11px;

    background: rgba(229, 0, 125, .08);
    color: var(--pink);

    font-size: 1.1rem;
}

.center-item-name {
    margin: 0 0 5px;

    color: var(--navy-dark);
    font-size: 1rem;
    font-weight: 800;
}

.center-account {
    display: flex;
    align-items: center;
    gap: 7px;

    color: var(--muted);
    font-size: .86rem;
}

.center-account i {
    color: var(--navy);
}

.center-account-missing {
    display: flex;
    align-items: center;
    gap: 7px;

    margin: 8px 0 14px;

    color: #a15c00;
    font-size: .85rem;
    font-weight: 600;
}

/* ===== LOGIN LOGO FINAL ===== */

.login-brand-panel {
    padding: 42px 38px;
}

.login-brand-logo {
    width: 220px;
    max-width: 80%;
    border-radius: 0;
    box-shadow: none;
}

.login-brand-panel::after {
    opacity: .045;
}

/* ===== LOGIN CONTROLS FIX ===== */

.login-field {
    margin-bottom: 18px;
}

.login-input-wrap {
    position: relative;
}

.login-input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #e5007d;
    z-index: 2;
    pointer-events: none;
}

.login-input-wrap .form-control {
    width: 100%;
    min-height: 50px;
    padding: 10px 44px 10px 44px;
    border: 1px solid #d7dde8;
    border-radius: 10px;
    background: #fff;
}

.login-input-wrap .form-control:focus {
    border-color: #e5007d;
    box-shadow: 0 0 0 .2rem rgba(229,0,125,.09);
}

.login-password-toggle {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: #1d3474;
    padding: 5px;
    cursor: pointer;
}

.login-submit {
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #e5007d, #c9006d);
    color: white;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(229,0,125,.18);
}

.login-submit:hover {
    background: linear-gradient(135deg, #cf006f, #b50061);
}

.login-secure {
    margin-top: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #1d3474;
    font-size: .78rem;
    font-weight: 600;
}

/* ===== LOGIN BRAND COLORS + BACKGROUND ===== */

.login-input-icon {
    color: #142653 !important;
}

.login-password-toggle {
    color: #142653 !important;
}

.login-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 18% 38%,
            rgba(229, 0, 125, .07),
            transparent 28%
        ),
        radial-gradient(
            circle at 78% 24%,
            rgba(20, 38, 83, .08),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #f8faff 0%,
            #f3f6fb 100%
        );
}

.login-page::before {
    content: "";
    position: fixed;

    left: -80px;
    bottom: 40px;

    width: 430px;
    height: 540px;

    background-image:
        url("/static/reports/person-watermark.ba6edfb2c353.png");

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    opacity: .055;

    pointer-events: none;
    z-index: 0;
}

.login-page::after {
    content: "";
    position: fixed;

    right: -120px;
    bottom: -170px;

    width: 760px;
    height: 430px;

    border-radius: 55% 0 0 0;

    background:
        linear-gradient(
            145deg,
            rgba(229, 0, 125, .95) 0%,
            rgba(207, 0, 111, .90) 48%,
            rgba(20, 38, 83, .98) 100%
        );

    transform: rotate(-7deg);

    pointer-events: none;
    z-index: 0;
}

.login-shell {
    position: relative;
    z-index: 2;
}

.login-card {
    position: relative;
    z-index: 3;
}

.login-submit {
    background:
        linear-gradient(
            135deg,
            #e5007d 0%,
            #c9006d 100%
        ) !important;
}

.login-submit:hover {
    background:
        linear-gradient(
            135deg,
            #cf006f 0%,
            #ad005d 100%
        ) !important;
}

.login-secure,
.login-lock-icon {
    color: #142653 !important;
}


/* ===== LOGIN TOP BAR + LOGO ===== */

.login-page {
    padding-top: 110px;
}

.login-page::before {
    z-index: 0;
}

.login-brand-panel {
    position: relative;
    z-index: 2;
}

.login-brand-logo {
    width: 280px !important;
    max-width: 78% !important;
    margin-bottom: 18px !important;
}

.login-brand-eyebrow {
    color: #e5007d !important;
}

.login-brand-copy h1 {
    color: #142653 !important;
}

.login-brand-copy p {
    color: #667085 !important;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 68px;
    background: linear-gradient(
        90deg,
        #102958 0%,
        #17356f 100%
    );
    border-bottom: 3px solid #e5007d;
    z-index: 999;
}

body::after {
    content: "Αγωγή · Κέντρο Μελέτης | Ειδική Αγωγή";
    position: fixed;
    top: 0;
    left: 28px;
    height: 68px;
    display: flex;
    align-items: center;
    color: white;
    font-size: .9rem;
    font-weight: 600;
    z-index: 1000;
}


/* ===== LOGIN FINAL POLISH ===== */

.login-shell {
    max-width: 720px;
}

.login-brand-panel {
    margin-bottom: 22px;
}

.login-brand-logo {
    width: 250px !important;
    max-width: 72% !important;
    margin-bottom: 14px !important;
}

.login-brand-copy h1 {
    font-size: 1.85rem !important;
    line-height: 1.18;
}

.login-brand-copy p {
    margin-top: 8px !important;
    font-size: .88rem !important;
}

.login-card {
    max-width: 500px;
    padding: 30px 34px 26px !important;
    border-radius: 20px !important;

    box-shadow:
        0 20px 50px rgba(20, 38, 83, .12) !important;
}

.login-card-header {
    margin-bottom: 22px !important;
}

.login-lock-icon {
    width: 46px !important;
    height: 46px !important;
    margin-bottom: 12px !important;

    background: rgba(20, 38, 83, .07) !important;
    color: #142653 !important;
}

.login-card-header h2 {
    font-size: 1.6rem !important;
}

.login-field {
    margin-bottom: 16px !important;
}

.login-input-wrap .form-control {
    min-height: 52px !important;
    border-radius: 11px !important;
}

.login-input-icon {
    color: #142653 !important;
}

.login-submit {
    min-height: 52px !important;
    margin-top: 4px;

    border-radius: 11px !important;

    box-shadow:
        0 10px 24px rgba(229, 0, 125, .22) !important;
}

.login-secure {
    margin-top: 18px !important;
    color: #142653 !important;
}

@media (max-width: 700px) {
    .login-page {
        padding: 95px 18px 50px !important;
    }

    .login-card {
        padding: 26px 20px !important;
    }

    .login-brand-logo {
        width: 210px !important;
    }

    .login-brand-copy h1 {
        font-size: 1.55rem !important;
    }
}

/* ===== DARK NAVY LOGIN FINAL ===== */

body {
    background: #0f2a5d;
}

.login-page {
    position: relative;
    min-height: 100vh;
    padding: 105px 24px 70px;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 28% 32%,
            rgba(255,255,255,.07),
            transparent 30%
        ),
        radial-gradient(
            circle at 78% 28%,
            rgba(54,103,190,.18),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #234487 0%,
            #17356f 45%,
            #0b2655 100%
        );
}

/* top navy bar */
.login-page::before {
    content: "";
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    height: 66px;

    background: #0b2556;
    border-bottom: 3px solid #e5007d;

    z-index: 20;
}

/* magenta curved area */
.login-page::after {
    content: "";
    position: fixed;

    right: -150px;
    bottom: -180px;

    width: 850px;
    height: 470px;

    border-radius: 58% 0 0 0;

    background:
        linear-gradient(
            145deg,
            #f01388 0%,
            #d40876 50%,
            #8d0b63 75%,
            #102958 100%
        );

    transform: rotate(-7deg);

    pointer-events: none;
    z-index: 0;
}

/* watermark figure left */
.login-shell::before {
    content: "";
    position: fixed;

    left: -70px;
    bottom: 40px;

    width: 430px;
    height: 540px;

    background-image:
        url("/static/reports/person-watermark.ba6edfb2c353.png");

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    opacity: .10;
    filter: grayscale(1) brightness(3);

    pointer-events: none;
    z-index: 0;
}

.login-shell {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 760px;

    display: flex;
    flex-direction: column;
    align-items: center;

    background: transparent;
    border: 0;
    box-shadow: none;
}

.login-brand-panel {
    width: 100%;
    padding: 0;
    margin: 0 0 24px;

    display: flex;
    flex-direction: column;
    align-items: center;

    background: transparent;
    color: white;
    text-align: center;
}

.login-brand-logo {
    width: 300px !important;
    max-width: 76% !important;

    margin: 0 auto 18px !important;

    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.login-brand-eyebrow {
    color: #ff4aa2 !important;
    font-weight: 800;
    letter-spacing: .14em;
}

.login-brand-copy h1 {
    margin: 0;

    color: white !important;

    font-size: 2rem !important;
    line-height: 1.15;

    font-weight: 800;
    letter-spacing: -.03em;
}

.login-brand-copy p {
    margin-top: 10px !important;

    color: rgba(255,255,255,.76) !important;

    font-size: .92rem !important;
}

.login-card {
    position: relative;
    z-index: 4;

    width: 100%;
    max-width: 510px;

    padding: 32px 36px 28px !important;

    background: rgba(255,255,255,.98);

    border: 1px solid rgba(255,255,255,.65);
    border-radius: 20px !important;

    box-shadow:
        0 22px 60px rgba(0,0,0,.22) !important;
}

.login-lock-icon {
    background: #edf2fa !important;
    color: #142653 !important;
}

.login-card-header h2 {
    color: #142653 !important;
}

.login-card-header p {
    color: #667085 !important;
}

.login-card .form-label {
    color: #142653 !important;
}

.login-input-icon,
.login-password-toggle {
    color: #142653 !important;
}

.login-input-wrap .form-control {
    background: #ffffff;
    border-color: #d4ddea;
}

.login-input-wrap .form-control:focus {
    border-color: #142653;
    box-shadow: 0 0 0 .2rem rgba(20,38,83,.10);
}

.login-submit {
    background:
        linear-gradient(
            135deg,
            #f00082 0%,
            #cf006f 100%
        ) !important;

    box-shadow:
        0 10px 24px rgba(229,0,125,.26) !important;
}

.login-secure {
    color: #142653 !important;
}

/* top bar text */
body::after {
    content: "Αγωγή · Κέντρο Μελέτης | Ειδική Αγωγή";

    position: fixed;
    top: 0;
    left: 34px;

    height: 66px;

    display: flex;
    align-items: center;

    color: white;

    font-size: .9rem;
    font-weight: 700;

    z-index: 30;
}

@media (max-width: 700px) {

    .login-page {
        padding: 95px 18px 50px;
    }

    .login-brand-logo {
        width: 235px !important;
    }

    .login-brand-copy h1 {
        font-size: 1.55rem !important;
    }

    .login-card {
        padding: 27px 21px !important;
    }

    .login-page::after {
        width: 520px;
        height: 300px;
    }

    .login-shell::before {
        width: 280px;
        height: 360px;
    }
}


/* ===== LOGIN REFERENCE STYLE PART 1 ===== */

.login-page {
    position: relative !important;
    min-height: 100vh !important;
    padding: 105px 24px 70px !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    overflow: hidden !important;

    background:
        radial-gradient(
            circle at 22% 32%,
            rgba(229,0,125,.055),
            transparent 28%
        ),
        radial-gradient(
            circle at 76% 22%,
            rgba(29,52,116,.055),
            transparent 30%
        ),
        #f6f8fc !important;
}

.login-page::before {
    content: "" !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 64px !important;
    background: #102958 !important;
    border-bottom: 3px solid #e5007d !important;
    z-index: 20 !important;
}

.login-page::after {
    content: "" !important;
    position: fixed !important;
    right: -110px !important;
    bottom: -150px !important;
    width: 780px !important;
    height: 390px !important;
    border-radius: 62% 0 0 0 !important;

    background:
        linear-gradient(
            150deg,
            #ee1386 0%,
            #d40a77 48%,
            #c0066d 68%,
            #102958 100%
        ) !important;

    transform: rotate(-6deg) !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.login-shell::before {
    content: "" !important;
    position: fixed !important;
    left: -55px !important;
    bottom: 35px !important;
    width: 360px !important;
    height: 460px !important;

    background-image:
        url("/static/reports/person-watermark.ba6edfb2c353.png") !important;

    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;

    opacity: .055 !important;
    filter: none !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.login-shell {
    position: relative !important;
    z-index: 3 !important;
    width: 100% !important;
    max-width: 720px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    min-height: auto !important;
}

.login-brand-panel {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 0 24px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    background: transparent !important;
    text-align: center !important;
}

.login-brand-panel::after {
    display: none !important;
}

.login-brand-logo {
    width: 235px !important;
    max-width: 70% !important;
    margin: 0 auto 14px !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.login-brand-eyebrow {
    margin-bottom: 7px !important;
    color: #e5007d !important;
    font-size: .74rem !important;
    font-weight: 800 !important;
    letter-spacing: .13em !important;
}

.login-brand-copy h1 {
    margin: 0 !important;
    color: #142653 !important;
    font-size: 1.82rem !important;
    line-height: 1.18 !important;
    font-weight: 800 !important;
    letter-spacing: -.03em !important;
}

.login-brand-copy p {
    max-width: 600px !important;
    margin: 8px auto 0 !important;
    color: #667085 !important;
    font-size: .86rem !important;
    line-height: 1.5 !important;
}


/* ===== LOGIN REFERENCE STYLE PART 2 ===== */

.login-card {
    position: relative !important;
    z-index: 4 !important;
    width: 100% !important;
    max-width: 500px !important;
    padding: 30px 34px 26px !important;
    background: rgba(255,255,255,.98) !important;
    border: 1px solid #e3e7ee !important;
    border-radius: 18px !important;
    box-shadow:
        0 18px 45px rgba(20,38,83,.13) !important;
}

.login-lock-icon {
    width: 44px !important;
    height: 44px !important;
    background: #eef2f8 !important;
    color: #142653 !important;
    border-radius: 50% !important;
}

.login-card-header h2 {
    color: #142653 !important;
}

.login-card-header p {
    color: #667085 !important;
}

.login-card .form-label {
    color: #142653 !important;
    font-weight: 700 !important;
}

.login-input-icon,
.login-password-toggle {
    color: #142653 !important;
}

.login-input-wrap .form-control {
    min-height: 50px !important;
    background: #fff !important;
    border: 1px solid #d6deea !important;
    border-radius: 10px !important;
}

.login-input-wrap .form-control:focus {
    border-color: #142653 !important;
    box-shadow:
        0 0 0 .2rem rgba(20,38,83,.08) !important;
}

.login-submit {
    min-height: 50px !important;
    background:
        linear-gradient(
            135deg,
            #ec007f 0%,
            #cf006f 100%
        ) !important;
    color: white !important;
    border-radius: 10px !important;
    box-shadow:
        0 10px 24px rgba(229,0,125,.22) !important;
}

.login-submit:hover {
    background:
        linear-gradient(
            135deg,
            #d80074 0%,
            #ba0064 100%
        ) !important;
}

.login-secure {
    color: #142653 !important;
}

body::after {
    content: "Αγωγή · Κέντρο Μελέτης | Ειδική Αγωγή" !important;
    position: fixed !important;
    top: 0 !important;
    left: 30px !important;
    height: 64px !important;
    display: flex !important;
    align-items: center !important;
    color: white !important;
    font-size: .86rem !important;
    font-weight: 700 !important;
    z-index: 30 !important;
}

@media (max-width: 700px) {

    .login-page {
        padding: 92px 18px 50px !important;
    }

    .login-brand-logo {
        width: 205px !important;
    }

    .login-brand-copy h1 {
        font-size: 1.5rem !important;
    }

    .login-card {
        padding: 26px 20px !important;
    }

    .login-page::after {
        width: 520px !important;
        height: 280px !important;
    }

    .login-shell::before {
        width: 250px !important;
        height: 330px !important;
    }
}


/* ===== LOGIN BACKGROUND + LOGO POLISH ===== */

.login-page {
    background:
        radial-gradient(
            circle at 18% 28%,
            rgba(229, 0, 125, .07),
            transparent 26%
        ),
        radial-gradient(
            circle at 82% 20%,
            rgba(20, 38, 83, .12),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #f8faff 0%,
            #f1f5fb 52%,
            #eaf0f9 100%
        ) !important;
}

.login-brand-logo {
    width: 250px !important;
    max-width: 72% !important;
    height: auto !important;

    margin: 0 auto 12px !important;

    background: transparent !important;
    mix-blend-mode: multiply;

    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.login-brand-panel {
    background: transparent !important;
}

.login-brand-copy h1 {
    color: #142653 !important;
}

.login-brand-copy p {
    color: #667085 !important;
}


/* ===== LOGIN BLUE BACKGROUND FIX ===== */

.login-page {
    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(229, 0, 125, .06),
            transparent 28%
        ),
        radial-gradient(
            circle at 82% 22%,
            rgba(20, 38, 83, .22),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #f7f9fd 0%,
            #eaf0f8 48%,
            #dfe8f5 100%
        ) !important;
}


/* ===== LOGIN NAVY ACCENTS ===== */

.login-shell::after {
    content: "";
    position: fixed;
    right: 4%;
    top: 19%;

    width: 150px;
    height: 150px;

    background:
        radial-gradient(
            circle,
            rgba(20, 38, 83, .16) 2px,
            transparent 2.5px
        );

    background-size: 18px 18px;

    opacity: .55;
    pointer-events: none;
    z-index: 0;
}

.login-card::before {
    content: "";
    position: absolute;

    top: -16px;
    right: -16px;

    width: 74px;
    height: 74px;

    border-top: 12px solid rgba(20, 38, 83, .10);
    border-right: 12px solid rgba(20, 38, 83, .10);

    border-radius: 0 18px 0 0;

    pointer-events: none;
}

.login-page {
    box-shadow:
        inset 0 -70px 0 rgba(20, 38, 83, .035);
}

/* ===== LOGIN CLEANUP + NAVY BACKGROUND ===== */

/* αφαιρούμε ανεπιθύμητα decorative artifacts */
.login-shell::after,
.login-card::before,
.login-card::after,
.login-card-header::before,
.login-card-header::after {
    display: none !important;
}

/* καθαρίζουμε την ασπίδα */
.login-lock-icon {
    background: #eef2f8 !important;
    color: #142653 !important;
    box-shadow: none !important;
    background-image: none !important;
}

/* πιο εμφανές navy/blue στο light background */
.login-page {
    background:
        radial-gradient(
            circle at 18% 28%,
            rgba(229,0,125,.055),
            transparent 29%
        ),
        radial-gradient(
            circle at 84% 20%,
            rgba(20,38,83,.24),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #f8faff 0%,
            #eef3fa 42%,
            #dde7f4 100%
        ) !important;
}

/* ελαφρύ navy βάθος χαμηλά */
.login-page {
    box-shadow:
        inset 0 -90px 120px rgba(20,38,83,.08) !important;
}


/* REMOVE CIRCLE AROUND LOGIN SHIELD */

.login-lock-icon {
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.login-lock-icon i {
    color: #142653 !important;
    font-size: 1.1rem !important;
}

/* ===== LOGIN FINAL NAVY CORNERS ===== */

.login-page {
    background:
        radial-gradient(
            ellipse at 105% 112%,
            #142653 0%,
            #142653 18%,
            transparent 18.5%
        ),
        radial-gradient(
            ellipse at -8% 115%,
            rgba(20, 38, 83, .92) 0%,
            rgba(20, 38, 83, .92) 13%,
            transparent 13.5%
        ),
        radial-gradient(
            circle at 18% 28%,
            rgba(229, 0, 125, .055),
            transparent 29%
        ),
        radial-gradient(
            circle at 84% 20%,
            rgba(20, 38, 83, .18),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #f8faff 0%,
            #eef3fa 42%,
            #dde7f4 100%
        ) !important;
}

/* κρατάμε καθαρά όλα τα παλιά artifacts κλειστά */
.login-shell::after,
.login-card::before,
.login-card::after,
.login-card-header::before,
.login-card-header::after {
    display: none !important;
}


/* ===== RESTORE LOGIN TOPBAR TEXT ===== */

body::after {
    content: "Αγωγή · Κέντρο Μελέτης | Ειδική Αγωγή" !important;

    position: fixed !important;
    top: 0 !important;
    left: 34px !important;

    height: 64px !important;

    display: flex !important;
    align-items: center !important;

    color: #ffffff !important;
    font-size: .88rem !important;
    font-weight: 700 !important;

    letter-spacing: .01em !important;

    z-index: 9999 !important;
    pointer-events: none !important;
}


/* FINAL LOGIN LOGO SIZE */

.login-brand-logo {
    width: 290px !important;
    max-width: 80% !important;
}


/* ===== FINAL: ISOLATE LOGIN FROM APP ===== */

/* Κανονικό authenticated app */
body {
    background: var(--bg) !important;
}

/* Τα παλιά login pseudo-elements να ΜΗΝ εμφανίζονται παντού */
body::before,
body::after {
    display: none !important;
}

/* Το κείμενο της πάνω μπάρας ΜΟΝΟ όταν υπάρχει login page */
body:has(.login-page)::after {
    content: "Αγωγή · Κέντρο Μελέτης | Ειδική Αγωγή" !important;
    position: fixed !important;
    top: 0 !important;
    left: 34px !important;
    height: 64px !important;
    display: flex !important;
    align-items: center !important;
    color: #ffffff !important;
    font-size: .88rem !important;
    font-weight: 700 !important;
    letter-spacing: .01em !important;
    z-index: 9999 !important;
    pointer-events: none !important;
}

/* Το login κρατά το δικό του background */
body:has(.login-page) {
    background: #f6f8fc !important;
}


/* ===== FIX LOGIN TOP BAR ===== */

body:has(.login-page)::before {
    content: "" !important;
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 64px !important;

    background: #17366f !important;
    border-bottom: 3px solid #e5007d !important;

    z-index: 9998 !important;
    pointer-events: none !important;
}

body:has(.login-page)::after {
    content: "Αγωγή · Κέντρο Μελέτης | Ειδική Αγωγή" !important;
    position: fixed !important;
    top: 0 !important;
    left: 30px !important;
    height: 64px !important;

    display: flex !important;
    align-items: center !important;

    color: #ffffff !important;
    font-size: .88rem !important;
    font-weight: 700 !important;

    z-index: 9999 !important;
    pointer-events: none !important;
}


/* CHILD PROFILE HEADER */

.child-profile-main {
    display: flex;
    align-items: center;
    gap: 18px;
}

.child-avatar {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: #142653;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
}

.child-gender {
    display: inline-block;
    margin-top: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #f1f4f9;
    color: #142653;
    font-size: .8rem;
    font-weight: 700;
}


.child-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 22px 0;
}

.child-info-grid > div {
    padding: 14px 16px;
    border: 1px solid #e8ecf2;
    border-radius: 12px;
    background: #fafbfd;
}

.child-info-grid span {
    display: block;
    color: #7a8495;
    font-size: .78rem;
    margin-bottom: 5px;
}

.child-info-grid strong {
    color: #142653;
}


.child-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}


/* REPORT CARDS */

.report-school-year {
    color: #7a8495;
    font-size: .82rem;
    margin-bottom: 10px;
}

.card-body > .border.rounded {
    border: 1px solid #e7ebf1 !important;
    border-radius: 14px !important;
    background: #fff;
    padding: 18px !important;
}

.card-body > .border.rounded h5 {
    color: #142653;
    font-weight: 800;
    margin-bottom: 4px;
}

.card-body > .border.rounded p {
    color: #6f7a8d;
    margin-bottom: 7px;
}


.report-status {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    margin: 4px 0 12px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
}

.report-status-draft {
    background: #fff4d8;
    color: #8a6500;
}

.report-status-completed {
    background: #eaf7ef;
    color: #267346;
}

.report-status-locked {
    background: #eef1f6;
    color: #4c596d;
}


/* Text review */
.text-review-results {
    margin-top: 10px;
}

.text-review-suggestion {
    display: inline-block;
    margin: 4px 5px 0 0;
    padding: 4px 9px;
    border: 1px solid #cfd8e8;
    border-radius: 7px;
    background: #fff;
    cursor: pointer;
    font-size: .85rem;
}

.text-review-suggestion:hover {
    background: #f1f5fb;
}

.text-review-preview {
    margin-top: 12px;
    padding: 12px;
    border: 1px solid #d9e1ee;
    border-radius: 9px;
    background: #f8fafc;
}

.text-review-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}


/* ===== CENTER MANAGEMENT FINAL POLISH ===== */

.center-item {
    padding: 22px;
    background: #fff;
    border-color: #e1e6ef;
    transition: box-shadow .18s ease, border-color .18s ease;
}

.center-item:hover {
    border-color: #d4dbe8;
    box-shadow: 0 6px 18px rgba(20, 38, 83, .055);
}

.center-item-header {
    align-items: flex-start;
}

.center-item-name {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.center-account {
    width: fit-content;
    padding: 6px 10px;
    border: 1px solid #e1e6ef;
    border-radius: 8px;
    background: #f7f9fc;
    color: #526078;
    font-weight: 600;
}

.center-account::after {
    content: "Ενεργός";
    margin-left: 5px;
    padding: 2px 7px;
    border-radius: 999px;
    background: #eaf7ef;
    color: #237a45;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .02em;
}

.center-account + .wizard-btn {
    margin-top: 10px !important;
    padding: 7px 12px;
    font-size: .82rem;
}

[id^="resetPassword"] {
    max-width: 720px;
}

[id^="resetPassword"] form {
    margin-top: 6px;
    padding: 16px;
    border: 1px solid #e1e6ef;
    border-radius: 11px;
    background: #f8fafc;
}

[id^="resetPassword"] .form-label {
    color: var(--navy-dark);
    font-size: .82rem;
    font-weight: 700;
}

[id^="resetPassword"] .form-control {
    min-height: 42px;
    background: #fff;
}

[id^="resetPassword"] .wizard-btn-primary {
    padding: 8px 14px;
    font-size: .84rem;
}

.center-account-missing {
    width: fit-content;
    padding: 7px 10px;
    border-radius: 8px;
    background: #fff7e8;
}
