/* /Components/Layout/MainLayout.razor.rz.scp.css */
html[b-lzjym2bzvy],
body[b-lzjym2bzvy] {
    height: 100%;
    margin: 0;
    overflow: hidden;
}

.page[b-lzjym2bzvy] {
    display: flex;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

main[b-lzjym2bzvy] {
    flex: 1;
    min-width: 0;
}

.main-content[b-lzjym2bzvy] {
    flex: 1;
    height: 100vh;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: #ffffff;
}

.sidebar[b-lzjym2bzvy] {
    width: 300px;
    min-width: 300px;
    height: 100vh;
    background: #12aeda;
    overflow-y: auto;
    overflow-x: hidden;
    flex-shrink: 0;
}

/* =========================================================
   AUTHENTICATED TOP BAR
   ========================================================= */

/*.top-row {
    position: relative;
    flex-shrink: 0;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 10px 30px;
    background-color: #ffffff !important;
    color: #1f2937;
    border-bottom: 1px solid #dfe3e8;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
    z-index: 1000;
}*/

.top-row[b-lzjym2bzvy] {
    background-color: #03142e; /*#f1f5fb; */
    border-bottom: 1px solid #d8e2f0;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}


.top-user-greeting[b-lzjym2bzvy] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    min-width: 0;
}

.greeting-text[b-lzjym2bzvy] {
    /*color: #4b5563 !important; */
    color: #ebeef2 !important;
    font-size: 1.75rem !important;
    font-weight: 500 !important;
    line-height: 2.3;
    margin: 0;
}

.user-name-text[b-lzjym2bzvy] {
    /* color: #111827 !important; */
    /* color: #ebeef2 !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    line-height: 2.3;*/
    color: #ebeef2 !important;
    font-size: 1.75rem !important;
    font-weight: 500 !important;
    line-height: 2.3;
    margin: 0;
}

.role-text[b-lzjym2bzvy] {
    /* color: #006BB7 !important; */
    color: #ebeef2 !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    margin: 0 !important;
}

.top-actions[b-lzjym2bzvy] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-left: auto;
    white-space: nowrap;
}

.version-text[b-lzjym2bzvy] {
    /* color: #4b5563 !important; */
    color: #ebeef2 !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
}

.top-action-separator[b-lzjym2bzvy] {
    color: #c4c9d0;
    font-weight: 400;
}

.top-action-link[b-lzjym2bzvy] {
    display: inline-flex;
    align-items: center;
    color: #006BB7 !important;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

    .top-action-link:hover[b-lzjym2bzvy] {
        color: #005a9c !important;
        text-decoration: underline;
    }

/* =========================================================
   NOTIFICATION BELL / UNREAD COUNT
   ========================================================= */

.notification-top-button[b-lzjym2bzvy] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 0;
    border-radius: 6px;
    padding: 7px 8px;
    background: transparent;
    color: #006BB7;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

    .notification-top-button:hover[b-lzjym2bzvy] {
        background: #eef7fc;
        color: #005a9c;
    }

.notification-icon-wrap[b-lzjym2bzvy] {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

    .notification-icon-wrap > .bi[b-lzjym2bzvy] {
        font-size: 1.08rem;
    }

.notification-count-badge[b-lzjym2bzvy] {
    position: absolute;
    top: -8px;
    right: -10px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border: 2px solid #ffffff;
    border-radius: 999px;
    background: #dc3545;
    color: #ffffff;
    font-size: 0.66rem;
    font-weight: 700;
    line-height: 14px;
    text-align: center;
    box-sizing: border-box;
}

.notification-button-text[b-lzjym2bzvy] {
    display: inline-block;
}

.copilot-top-button[b-lzjym2bzvy] {
    display: inline-flex;
    align-items: center;
    border: 1px solid #006BB7;
    border-radius: 6px;
    padding: 7px 12px;
    background: #ffffff;
    color: #006BB7;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

    .copilot-top-button:hover[b-lzjym2bzvy] {
        background: #006BB7;
        color: #ffffff;
    }

/* =========================================================
   PAGE CONTENT
   ========================================================= */

.page-content[b-lzjym2bzvy] {
    flex: 1;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 24px 30px;
    background: #ffffff;
    min-height: 0;
}

/* =========================================================
   GLOBAL AI COPILOT DRAWER
   ========================================================= */

.copilot-backdrop[b-lzjym2bzvy] {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.24);
    z-index: 1998;
}

.copilot-panel[b-lzjym2bzvy] {
    position: fixed;
    top: 0;
    right: 0;
    width: min(430px, 92vw);
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-left: 1px solid #dfe3e8;
    box-shadow: -8px 0 24px rgba(15, 23, 42, 0.18);
    z-index: 1999;
}

.copilot-panel-header[b-lzjym2bzvy] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding: 14px 18px;
    border-bottom: 1px solid #dfe3e8;
    background: #f8f9fa;
}

.copilot-panel-title[b-lzjym2bzvy] {
    color: #006BB7;
    font-size: 1rem;
    font-weight: 700;
}

.copilot-close-button[b-lzjym2bzvy] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #374151;
    cursor: pointer;
}

    .copilot-close-button:hover[b-lzjym2bzvy] {
        background: #e9ecef;
    }

.copilot-panel-body[b-lzjym2bzvy] {
    flex: 1;
    overflow-y: auto;
    padding: 18px;
}

.copilot-welcome-card[b-lzjym2bzvy] {
    display: flex;
    gap: 14px;
    padding: 16px;
    border: 1px solid #dbe4ec;
    border-radius: 10px;
    background: #f8fbfd;
}

.copilot-welcome-icon[b-lzjym2bzvy] {
    color: #006BB7;
    font-size: 1.3rem;
}

.copilot-welcome-title[b-lzjym2bzvy] {
    margin-bottom: 5px;
    color: #111827;
    font-weight: 700;
}

.copilot-welcome-text[b-lzjym2bzvy] {
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.45;
}

.copilot-example-section[b-lzjym2bzvy] {
    margin-top: 20px;
}

.copilot-example-title[b-lzjym2bzvy] {
    margin-bottom: 10px;
    color: #374151;
    font-size: 0.88rem;
    font-weight: 700;
}

.copilot-example-button[b-lzjym2bzvy] {
    display: block;
    width: 100%;
    margin-bottom: 8px;
    padding: 10px 12px;
    border: 1px solid #dbe4ec;
    border-radius: 7px;
    background: #ffffff;
    color: #006BB7;
    text-align: left;
    font-size: 0.88rem;
}

.copilot-integration-note[b-lzjym2bzvy] {
    margin-top: 20px;
    padding: 12px;
    border-radius: 7px;
    background: #f8f9fa;
    color: #5f6875;
    font-size: 0.84rem;
    line-height: 1.4;
}

.copilot-panel-footer[b-lzjym2bzvy] {
    padding: 14px 18px;
    border-top: 1px solid #dfe3e8;
    background: #ffffff;
}

.copilot-input-wrapper[b-lzjym2bzvy] {
    display: flex;
    gap: 8px;
}

.copilot-input[b-lzjym2bzvy] {
    flex: 1;
}

.copilot-send-button[b-lzjym2bzvy] {
    min-width: 44px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {
    .notification-button-text[b-lzjym2bzvy] {
        display: none;
    }
}

@media (max-width: 900px) {
    .sidebar[b-lzjym2bzvy] {
        width: 260px;
        min-width: 260px;
    }

    .top-row[b-lzjym2bzvy] {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding: 10px 18px;
    }

    .top-actions[b-lzjym2bzvy] {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        margin-left: 0;
    }

    .notification-button-text[b-lzjym2bzvy] {
        display: inline-block;
    }
}

@media (max-width: 640.98px) {
    .page-content[b-lzjym2bzvy] {
        padding: 18px;
    }

    .top-action-separator[b-lzjym2bzvy] {
        display: none;
    }
}

#blazor-error-ui[b-lzjym2bzvy] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 3000;
}

    #blazor-error-ui .dismiss[b-lzjym2bzvy] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }


main[b-lzjym2bzvy] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content[b-lzjym2bzvy] {
    flex: 1;
}

.app-footer[b-lzjym2bzvy] {
    margin-top: auto;
    border-top: 1px solid #e5e7eb;
    background-color: #ffffff;
    padding: 18px 28px;
    font-size: 0.875rem;
}

.app-footer-content[b-lzjym2bzvy] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.app-footer-copyright[b-lzjym2bzvy] {
    color: #64748b;
}

.app-footer-links[b-lzjym2bzvy] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

    .app-footer-links a[b-lzjym2bzvy] {
        color: #2563eb;
        text-decoration: none;
        font-weight: 500;
    }

        .app-footer-links a:hover[b-lzjym2bzvy] {
            text-decoration: underline;
        }

.footer-separator[b-lzjym2bzvy] {
    color: #cbd5e1;
}

@media (max-width: 768px) {
    .app-footer-content[b-lzjym2bzvy] {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .app-footer-links[b-lzjym2bzvy] {
        justify-content: center;
    }
}

/* =========================================================
   MAIN HEADER
   ========================================================= */

.top-row[b-lzjym2bzvy] {
    /*background-color: #f1f5fb; */
    background-color: #03142e;
    border-bottom: 1px solid #d8e2f0;
    height:abs(100px);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}


/* =========================================================
   APPLICATION FOOTER
   ========================================================= */

.app-footer[b-lzjym2bzvy] {
    margin-top: auto;
    background-color: #03142e;
    border-top: 1px solid #d5e1ef;
    padding: 18px 28px;
    font-size: 0.875rem;
    color: #52657a;
}

.app-footer-content[b-lzjym2bzvy] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.app-footer-copyright[b-lzjym2bzvy] {
    color: #64748b;
}

.app-footer-links[b-lzjym2bzvy] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

    .app-footer-links a[b-lzjym2bzvy] {
        color: #0067c5;
        text-decoration: none;
        font-weight: 500;
    }

        .app-footer-links a:hover[b-lzjym2bzvy] {
            color: #004f9e;
            text-decoration: underline;
        }

.footer-separator[b-lzjym2bzvy] {
    color: #aebdcd;
}



/*html,
body {
    height: 100%;
    margin: 0;
    overflow: hidden;
}

.page {
    display: flex;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}


main {
    flex: 1;
    min-width: 0;
}

.app-layout {
    display: flex;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.sidebar-resizer {
    width: 6px;
    min-width: 6px;
    flex: 0 0 6px;
    cursor: col-resize;
    background-color: transparent;
    transition: background-color 0.2s ease;
}

    .sidebar-resizer:hover,
    .sidebar-resizer.resizing {
        background-color: rgba(59, 130, 246, 0.7);
    }

.main-content {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 100vh;
    overflow-x: auto;
    overflow-y: auto;
    background-color: #ffffff;
}

.top-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 50px;
    padding: 0 1.25rem;
    border-bottom: 1px solid #d9dce1;
    background-color: #f8f9fa;
}

.version-text {
    font-size: 0.8rem;
    font-weight: 600;
}

.content {
    padding: 1rem 1.5rem;
}

.top-row ::deep a, .top-row ::deep .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
}

    .top-row ::deep a:hover, .top-row ::deep .btn-link:hover {
        text-decoration: underline;
    }

    .top-row ::deep a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row {
        justify-content: space-between;
    }

        .top-row ::deep a, .top-row ::deep .btn-link {
            margin-left: 0;
        }
}

@media (min-width: 641px) {
    .page {
        flex-direction: row;
    }

    .sidebar {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row {
        position: sticky;
        top: 0;
        z-index: 1;
    }

        .top-row.auth ::deep a:first-child {
            flex: 1;
            text-align: right;
            width: 0;
        }

    .top-row, article {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.mainnav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.nav-user {
    font-weight: 500;
    color: #333;
}*/

/* Login Button */
/*.btn-login {
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid #0d6efd;
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

    .btn-login:hover {
        background-color: #0d6efd;
        color: #fff;
    }*/

/* Register Button */
/*.btn-register {
    padding: 6px 14px;
    border-radius: 6px;
    background-color: #0d6efd;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

    .btn-register:hover {
        background-color: #0b5ed7;
    }*/

/* Logout Button */
/*.btn-logout {
    padding: 6px 14px;
    border-radius: 6px;
    background-color: #dc3545;
    color: white;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .btn-logout:hover {
        background-color: #bb2d3b;
    }


@media (max-width: 900px) {

    .sidebar {
        width: 260px;
        min-width: 260px;
    }
}*/


/* =========================================================
   MAIN TOP BAR
   ========================================================= */

/*.top-row {
    min-height: 105px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;*/
    /*    background-color: #1598b8 !important;  */
        /*background-color: #12aeda !important;

 border-bottom: 1px solid #1287a5;
    color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.10);
    z-index: 100;
}*/


/* =========================================================
   CENTERED USER GREETING
   ========================================================= */

/*.top-user-greeting {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.greeting-text {
    color: #ffffff !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    line-height: 1.2;
    margin: 0;
}*/


/* =========================================================
   ROLE
   ========================================================= */

/*.role-text {
    color: #ffffff !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    margin-top: 6px;
}*/


/* =========================================================
   VERSION - RIGHT SIDE
   ========================================================= */

/*.version-area {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    white-space: nowrap;
}*/


/* ==============================
   SCROLLABLE PAGE BODY ONLY
   ============================== */

/*.page-content {
    flex: 1;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 24px 30px;
    background: #ffffff;
    min-height: 0;
}*/

/* ==============================
   FIXED / PERSISTENT TOP BAR
   ============================== */

/*.top-row {
    position: relative;
    flex-shrink: 0;
    min-height: 88px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 30px;*/
    /*background-color: #1598b8; */
    /*background-color: #12aeda !important;
    color: #ffffff;
    border-bottom: 1px solid #1287a5;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.10);
    z-index: 1000;
}*/

/* ==============================
   MAIN AREA
   ============================== */

/*.main-content {
    flex: 1;
    height: 100vh;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: #ffffff;
}*/

/* ==============================
   LEFT SIDEBAR
   ============================== */

/*.sidebar {
    width: 300px;
    min-width: 300px;
    height: 100vh;
    background: #12aeda;
    overflow-y: auto;
    overflow-x: hidden;
    flex-shrink: 0;
}*/

/* ==========================================
   DATE / TIME / VERSION
   ========================================== */

/*.top-status-area {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
}

.current-date,
.current-time,
.country-text,
.version-text {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
}

.status-separator {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}*/
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* CSS for NavMenu component */

.nav-shell[b-seoe8kewlf] {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100vh;
    width: 100%;
    color: #f8fafc;
    background: linear-gradient( 180deg, #0f172a 0%, #172554 45%, #312e81 100% );
}

.brand-area[b-seoe8kewlf] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 76px;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-icon[b-seoe8kewlf] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 12px;
    font-size: 1.3rem;
    background: rgba(255, 255, 255, 0.14);
}

.brand-text[b-seoe8kewlf] {
    min-width: 0;
}

.brand-title[b-seoe8kewlf] {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.brand-subtitle[b-seoe8kewlf] {
    margin-top: 0.15rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    white-space: nowrap;
}

.modern-nav[b-seoe8kewlf] {
    flex: 1;
    min-height: 0;
    padding: 0.8rem 0.7rem 1rem;
    overflow-y: auto;
    overflow-x: hidden;
}

.nav-section[b-seoe8kewlf] {
    margin-bottom: 0.45rem;
}

.nav-section-header[b-seoe8kewlf],
.nav-link[b-seoe8kewlf] {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 44px;
    border: 0;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.82);
    background: transparent;
    text-decoration: none;
    transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-section-header[b-seoe8kewlf] {
    justify-content: space-between;
    padding: 0.65rem 0.75rem;
    font: inherit;
    cursor: pointer;
}

.nav-section-left[b-seoe8kewlf] {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 0;
}

.nav-section-title[b-seoe8kewlf],
.nav-text[b-seoe8kewlf] {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-section-title[b-seoe8kewlf] {
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.nav-link[b-seoe8kewlf] {
    gap: 0.7rem;
    padding: 0.62rem 0.75rem;
    font-size: 0.86rem;
}

.nav-link-main[b-seoe8kewlf] {
    font-weight: 650;
}

.nav-icon[b-seoe8kewlf] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    flex-shrink: 0;
    font-size: 1rem;
}

.nav-chevron[b-seoe8kewlf] {
    margin-left: 0.5rem;
    flex-shrink: 0;
    font-size: 0.78rem;
    opacity: 0.75;
}

.nav-section-header:hover[b-seoe8kewlf],
.nav-link:hover[b-seoe8kewlf] {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-section-header:focus-visible[b-seoe8kewlf],
.nav-link:focus-visible[b-seoe8kewlf] {
    outline: 2px solid rgba(147, 197, 253, 0.9);
    outline-offset: 2px;
}

.nav-submenu[b-seoe8kewlf] {
    position: relative;
    margin-top: 0.2rem;
    padding-left: 1.4rem;
}

    .nav-submenu[b-seoe8kewlf]::before {
        position: absolute;
        top: 0.25rem;
        bottom: 0.25rem;
        left: 1.05rem;
        width: 1px;
        content: "";
        background: rgba(255, 255, 255, 0.14);
    }

    .nav-submenu .nav-link[b-seoe8kewlf] {
        min-height: 38px;
        padding: 0.48rem 0.7rem 0.48rem 0.8rem;
        font-size: 0.82rem;
    }

.nav-dot[b-seoe8kewlf] {
    width: 6px;
    height: 6px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}

.nav-link.active[b-seoe8kewlf] {
    color: #ffffff;
    background: linear-gradient( 90deg, rgba(59, 130, 246, 0.72), rgba(99, 102, 241, 0.48) );
    box-shadow: inset 3px 0 0 #bfdbfe, 0 6px 16px rgba(15, 23, 42, 0.16);
}

    .nav-link.active .nav-dot[b-seoe8kewlf] {
        background: #ffffff;
    }

.nav-footer[b-seoe8kewlf] {
    padding: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 23, 42, 0.2);
}

.user-summary[b-seoe8kewlf] {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.45rem;
}

.user-avatar[b-seoe8kewlf] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    font-size: 0.78rem;
    font-weight: 800;
    color: #172554;
    background: #dbeafe;
}

.user-details[b-seoe8kewlf] {
    min-width: 0;
}

.user-name[b-seoe8kewlf] {
    overflow: hidden;
    font-size: 0.78rem;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-status[b-seoe8kewlf] {
    margin-top: 0.1rem;
    font-size: 0.68rem;
    color: #86efac;
}

.logout-link[b-seoe8kewlf] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    margin-top: 0.45rem;
    padding: 0.55rem 0.7rem;
    border-radius: 9px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    text-decoration: none;
}

    .logout-link:hover[b-seoe8kewlf] {
        color: #ffffff;
        background: rgba(248, 113, 113, 0.18);
    }

.modern-nav[b-seoe8kewlf]::-webkit-scrollbar {
    width: 7px;
}

.modern-nav[b-seoe8kewlf]::-webkit-scrollbar-track {
    background: transparent;
}

.modern-nav[b-seoe8kewlf]::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
}

    .modern-nav[b-seoe8kewlf]::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.32);
    }
.signed-in-user[b-seoe8kewlf] {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
}

.signed-in-label[b-seoe8kewlf] {
    color: #cbd5e1;
    font-size: 0.8rem;
}


/* BEGIN - New styles added on 08.16.2026 */
/* =========================================================
   PROPERTY MANAGEMENT LEFT NAVIGATION
   Blue theme matching Quick Action buttons
   ========================================================= */

/* Entire navigation sidebar */
.nav-scrollable[b-seoe8kewlf] {
    background-color: #0d6efd !important;
}


/* If your outer navigation container has one of these classes */
.navbar[b-seoe8kewlf],
.sidebar[b-seoe8kewlf],
.nav-menu[b-seoe8kewlf],
.navmenu-container[b-seoe8kewlf] {
    background-color: #0d6efd !important;
}


/* =========================================================
   BRAND / LOGO AREA
   ========================================================= */

.navbar-brand[b-seoe8kewlf],
.brand-area[b-seoe8kewlf] {
    color: #ffffff !important;
}

    .navbar-brand span[b-seoe8kewlf],
    .navbar-brand small[b-seoe8kewlf],
    .brand-area span[b-seoe8kewlf],
    .brand-area small[b-seoe8kewlf] {
        color: #ffffff !important;
    }


/* =========================================================
   MAIN NAVIGATION LINKS
   ========================================================= */

.nav-item[b-seoe8kewlf]  a,
.nav-item a[b-seoe8kewlf],
.nav-link[b-seoe8kewlf] {
    color: #ffffff !important;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.15s ease, color 0.15s ease;
}


    /* Icons */
    .nav-item[b-seoe8kewlf]  a .bi,
    .nav-item a .bi[b-seoe8kewlf],
    .nav-link .bi[b-seoe8kewlf] {
        color: #ffffff !important;
    }


    /* =========================================================
   HOVER
   ========================================================= */

    .nav-item[b-seoe8kewlf]  a:hover,
    .nav-item a:hover[b-seoe8kewlf],
    .nav-link:hover[b-seoe8kewlf] {
        background-color: #0b5ed7 !important;
        color: #ffffff !important;
    }


    /* =========================================================
   ACTIVE PAGE
   ========================================================= */

    .nav-item[b-seoe8kewlf]  a.active,
    .nav-item a.active[b-seoe8kewlf],
    .nav-link.active[b-seoe8kewlf] {
        background-color: #084298 !important;
        color: #ffffff !important;
        font-weight: 600;
    }


/* =========================================================
   NAVIGATION SECTION HEADERS
   Property Management / Financial / etc.
   ========================================================= */

.nav-section-title[b-seoe8kewlf],
.nav-group-title[b-seoe8kewlf],
.menu-section-title[b-seoe8kewlf],
.nav-category[b-seoe8kewlf] {
    color: #ffffff !important;
    font-weight: 700;
}


/* =========================================================
   COLLAPSIBLE GROUP BUTTONS
   ========================================================= */

.nav-group-button[b-seoe8kewlf],
.nav-section-button[b-seoe8kewlf],
.nav-toggle[b-seoe8kewlf] {
    color: #ffffff !important;
    background: transparent !important;
    border: none;
}

    .nav-group-button:hover[b-seoe8kewlf],
    .nav-section-button:hover[b-seoe8kewlf],
    .nav-toggle:hover[b-seoe8kewlf] {
        background-color: #0b5ed7 !important;
        color: #ffffff !important;
    }


    /* Dropdown / collapse arrows */
    .nav-group-button .bi[b-seoe8kewlf],
    .nav-section-button .bi[b-seoe8kewlf],
    .nav-toggle .bi[b-seoe8kewlf] {
        color: #ffffff !important;
    }


/* =========================================================
   CHILD / SUBMENU LINKS
   Properties
   Tenants
   Leases
   etc.
   ========================================================= */

.nav-submenu a[b-seoe8kewlf],
.submenu a[b-seoe8kewlf],
.child-nav a[b-seoe8kewlf] {
    color: #ffffff !important;
}

    .nav-submenu a:hover[b-seoe8kewlf],
    .submenu a:hover[b-seoe8kewlf],
    .child-nav a:hover[b-seoe8kewlf] {
        background-color: #0b5ed7 !important;
        color: #ffffff !important;
    }


/* =========================================================
   DIVIDERS
   ========================================================= */

.nav-divider[b-seoe8kewlf],
.nav-menu hr[b-seoe8kewlf] {
    border-color: rgba(255, 255, 255, 0.25) !important;
}


/* =========================================================
   SIGNED-IN USER AREA
   ========================================================= */

.signed-in-user[b-seoe8kewlf] {
    color: #ffffff !important;
    font-weight: 700;
}

.signed-in-label[b-seoe8kewlf] {
    color: #ffffff !important;
    opacity: 0.90;
}


/* User icon */
.signed-in-area .bi[b-seoe8kewlf],
.user-area .bi[b-seoe8kewlf] {
    color: #ffffff !important;
}

.nav-group[b-seoe8kewlf] {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

/* =========================================================
   LOGOUT
   IMPORTANT:
   Do NOT style the Logout button here.
   It keeps its current appearance.
   ========================================================= */

/* END - New styles added on 08.16.2026*/

/* OVERRIDE BLOCK */

/* ==========================================================
   ENTIRE LEFT NAVIGATION
   ========================================================== */

.nav-shell[b-seoe8kewlf],
.nav-scrollable[b-seoe8kewlf],
.modern-nav[b-seoe8kewlf],
.brand-area[b-seoe8kewlf] {
    background-color: #12aeda !important;
}


/* Make nav consume full sidebar height */
.nav-shell[b-seoe8kewlf] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #ffffff;
}


/* ==========================================================
   BRAND AREA
   ========================================================== */

.brand-area[b-seoe8kewlf] {
    padding: 20px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.brand-title[b-seoe8kewlf] {
    color: #ffffff !important;
    font-size: 1.25rem !important;
    font-weight: 700;
}

.brand-subtitle[b-seoe8kewlf] {
    color: #ffffff !important;
    font-size: 0.95rem !important;
    opacity: 0.9;
}

.brand-icon[b-seoe8kewlf] {
    color: #ffffff !important;
}


/* ==========================================================
   MAIN NAVIGATION
   ========================================================== */

.modern-nav[b-seoe8kewlf] {
    flex: 1;
    padding: 14px 10px;
}


    /* Main navigation links */

    .modern-nav[b-seoe8kewlf]  .nav-link,
    .modern-nav .nav-link[b-seoe8kewlf],
    .modern-nav a[b-seoe8kewlf] {
        color: #ffffff !important;
        font-size: 1.15rem !important;
        font-weight: 500;
        line-height: 1.5;
        padding: 11px 14px;
        border-radius: 6px;
        text-decoration: none;
    }


    /* Icons */

    .modern-nav .bi[b-seoe8kewlf],
    .modern-nav[b-seoe8kewlf]  .bi {
        color: #ffffff !important;
        font-size: 1.15rem !important;
        margin-right: 8px;
    }


    /* ==========================================================
   HOVER
   ========================================================== */

    .modern-nav a:hover[b-seoe8kewlf],
    .modern-nav .nav-link:hover[b-seoe8kewlf] {
        background-color: #0d8fbd !important;
        color: #ffffff !important;
    }


    /* ==========================================================
   ACTIVE LINK
   ========================================================== */

    .modern-nav a.active[b-seoe8kewlf],
    .modern-nav .nav-link.active[b-seoe8kewlf] {
        background-color: #0d6efd !important;
        color: #ffffff !important;
        font-weight: 700;
    }


/* ==========================================================
   COLLAPSIBLE HEADERS
   Property Management
   Financial
   Maintenance
   ========================================================== */

.nav-group-header[b-seoe8kewlf],
.nav-section-header[b-seoe8kewlf],
.nav-toggle[b-seoe8kewlf] {
    color: #ffffff !important;
    font-size: 1.15rem !important;
    font-weight: 700;
    padding: 12px 14px;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    border-radius: 6px;
}


    .nav-group-header:hover[b-seoe8kewlf],
    .nav-section-header:hover[b-seoe8kewlf],
    .nav-toggle:hover[b-seoe8kewlf] {
        background-color: #0d8fbd !important;
        color: #ffffff !important;
    }


    /* Toggle arrow */

    .nav-toggle .bi-chevron-right[b-seoe8kewlf],
    .nav-toggle .bi-chevron-down[b-seoe8kewlf],
    .nav-group-header .bi-chevron-right[b-seoe8kewlf],
    .nav-group-header .bi-chevron-down[b-seoe8kewlf] {
        color: #ffffff !important;
        font-size: 1rem !important;
    }


/* ==========================================================
   SUBMENU HEADERS
   Properties
   Tenants
   Leases
   Other
   ========================================================== */

.submenu-title[b-seoe8kewlf],
.nav-submenu-title[b-seoe8kewlf] {
    color: #ffffff !important;
    font-size: 1.05rem !important;
    font-weight: 600;
    padding-left: 15px;
    margin-top: 7px;
}


/* Child menu links */

.nav-submenu a[b-seoe8kewlf],
.submenu a[b-seoe8kewlf],
.child-nav a[b-seoe8kewlf] {
    color: #ffffff !important;
    font-size: 1rem !important;
    padding: 9px 14px 9px 28px;
    display: block;
    border-radius: 5px;
}


    /* Child hover */

    .nav-submenu a:hover[b-seoe8kewlf],
    .submenu a:hover[b-seoe8kewlf],
    .child-nav a:hover[b-seoe8kewlf] {
        background-color: #0d8fbd !important;
        color: #ffffff !important;
    }


/* ==========================================================
   SIGNED IN USER AREA
   ========================================================== */

.signed-in-area[b-seoe8kewlf] {
    margin-top: auto;
    padding: 15px;
    background-color: #12aeda !important;
    border-top: 1px solid rgba(255, 255, 255, 0.30);
}


.signed-in-user[b-seoe8kewlf] {
    color: #ffffff !important;
    font-size: 1rem !important;
    font-weight: 700;
}


.signed-in-label[b-seoe8kewlf] {
    color: #ffffff !important;
    font-size: 0.9rem !important;
    opacity: 0.9;
}


/*
   DO NOT change Logout styling here.
   Keep the Logout button exactly as it currently is.
*/

/* ============================================================
   FINAL LEFT-NAV CONSISTENCY OVERRIDES
   Added 2026-09-01
   Purpose:
   1. Every selected link = dark blue background + white text/icon.
   2. Expandable/collapsible headings are larger than child links.
   3. Left navigation scrollbar stays dark blue and prominent.
   ============================================================ */

:root[b-seoe8kewlf] {
    --pm-nav-bg: #12aeda;
    --pm-nav-active: #084298;
    --pm-nav-active-hover: #06357d;
    --pm-nav-hover: #0d8fbd;
    --pm-nav-text: #ffffff;
    --pm-nav-scrollbar: #084298;
    --pm-nav-scrollbar-hover: #06357d;
}

/* Keep the authenticated navigation area in the existing cyan theme. */
.nav-shell[b-seoe8kewlf],
.modern-nav[b-seoe8kewlf],
.brand-area[b-seoe8kewlf] {
    background-color: var(--pm-nav-bg) !important;
}

/* ------------------------------------------------------------
   NAV LINKS
   ------------------------------------------------------------ */

.modern-nav[b-seoe8kewlf]  a.nav-link,
.modern-nav[b-seoe8kewlf]  a.nav-menu-link,
.modern-nav .nav-link[b-seoe8kewlf],
.modern-nav .nav-menu-link[b-seoe8kewlf] {
    color: var(--pm-nav-text) !important;
    background-color: transparent;
    border-radius: 6px;
    text-decoration: none;
}

/* Consistent hover for every menu link. */
.modern-nav[b-seoe8kewlf]  a.nav-link:hover,
.modern-nav[b-seoe8kewlf]  a.nav-menu-link:hover,
.modern-nav .nav-link:hover[b-seoe8kewlf],
.modern-nav .nav-menu-link:hover[b-seoe8kewlf] {
    color: #ffffff !important;
    background-color: var(--pm-nav-hover) !important;
}

/* Consistent ACTIVE state across every NavLink.
   This matches the dark-blue selected button shown in the screenshot. */
.modern-nav[b-seoe8kewlf]  a.nav-link.active,
.modern-nav[b-seoe8kewlf]  a.nav-menu-link.active,
.modern-nav .nav-link.active[b-seoe8kewlf],
.modern-nav .nav-menu-link.active[b-seoe8kewlf],
.nav-item[b-seoe8kewlf]  a.nav-link.active,
.nav-item[b-seoe8kewlf]  a.nav-menu-link.active {
    color: #ffffff !important;
    background: var(--pm-nav-active) !important;
    background-color: var(--pm-nav-active) !important;
    font-weight: 700 !important;
    box-shadow: none !important;
}

/* Selected-link icons and dots always stay white. */
.modern-nav[b-seoe8kewlf]  a.nav-link.active .bi,
.modern-nav[b-seoe8kewlf]  a.nav-menu-link.active .bi,
.modern-nav[b-seoe8kewlf]  a.nav-link.active .nav-icon,
.modern-nav[b-seoe8kewlf]  a.nav-menu-link.active .nav-icon,
.modern-nav[b-seoe8kewlf]  a.nav-link.active .submenu-icon,
.modern-nav[b-seoe8kewlf]  a.nav-menu-link.active .submenu-icon,
.modern-nav[b-seoe8kewlf]  a.nav-link.active .nav-dot,
.modern-nav[b-seoe8kewlf]  a.nav-menu-link.active .nav-dot {
    color: #ffffff !important;
    background-color: #ffffff;
}

/* Do not make Bootstrap icons themselves look like blocks. */
.modern-nav[b-seoe8kewlf]  a.nav-link.active .bi,
.modern-nav[b-seoe8kewlf]  a.nav-menu-link.active .bi,
.modern-nav[b-seoe8kewlf]  a.nav-link.active .nav-icon,
.modern-nav[b-seoe8kewlf]  a.nav-menu-link.active .nav-icon,
.modern-nav[b-seoe8kewlf]  a.nav-link.active .submenu-icon,
.modern-nav[b-seoe8kewlf]  a.nav-menu-link.active .submenu-icon {
    background-color: transparent !important;
}

.modern-nav[b-seoe8kewlf]  a.nav-link.active:hover,
.modern-nav[b-seoe8kewlf]  a.nav-menu-link.active:hover,
.modern-nav .nav-link.active:hover[b-seoe8kewlf],
.modern-nav .nav-menu-link.active:hover[b-seoe8kewlf] {
    background-color: var(--pm-nav-active-hover) !important;
    color: #ffffff !important;
}

/* ------------------------------------------------------------
   COLLAPSIBLE / EXPANDABLE HEADINGS
   Parent headings intentionally larger than child items.
   ------------------------------------------------------------ */

.nav-section-header[b-seoe8kewlf] {
    min-height: 46px;
    padding: 11px 14px !important;
    color: #ffffff !important;
    background: transparent !important;
    font-size: 1.18rem !important;
    font-weight: 750 !important;
    line-height: 1.25;
}

.nav-section-header .nav-section-title[b-seoe8kewlf] {
    color: #ffffff !important;
    font-size: 1.18rem !important;
    font-weight: 750 !important;
}

.nav-section-header .nav-icon[b-seoe8kewlf] {
    color: #ffffff !important;
    font-size: 1.12rem !important;
}

.nav-section-header .nav-chevron[b-seoe8kewlf] {
    color: #ffffff !important;
    font-size: 0.95rem !important;
    opacity: 1;
}

.nav-section-header:hover[b-seoe8kewlf] {
    background-color: var(--pm-nav-hover) !important;
}

/* Sub-headings inside an expanded section:
   Properties, Tenants, Leases, Other, etc. */
.nav-subgroup-title[b-seoe8kewlf],
.nav-section-label[b-seoe8kewlf],
.nav-subsection-title[b-seoe8kewlf],
.submenu-title[b-seoe8kewlf],
.nav-submenu-title[b-seoe8kewlf] {
    display: block;
    margin-top: 8px;
    padding: 5px 12px 4px 14px;
    color: #ffffff !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    line-height: 1.25;
}

/* Child links are intentionally smaller than collapsible headers. */
.nav-submenu[b-seoe8kewlf]  a.nav-link,
.nav-submenu[b-seoe8kewlf]  a.nav-menu-link,
.nav-submenu .nav-link[b-seoe8kewlf],
.nav-submenu .nav-menu-link[b-seoe8kewlf],
.submenu-link[b-seoe8kewlf] {
    min-height: 38px;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    font-size: 0.98rem !important;
    font-weight: 500;
}

/* Normal top-level links remain slightly smaller than group headings. */
.modern-nav > .nav-section[b-seoe8kewlf] >  a.nav-link,
.modern-nav[b-seoe8kewlf] >  a.nav-link,
.modern-nav .nav-link-main[b-seoe8kewlf] {
    font-size: 1.02rem !important;
}

/* ------------------------------------------------------------
   ALWAYS-VISIBLE DARK BLUE SCROLLBAR
   Chrome / Edge / Safari
   ------------------------------------------------------------ */

.modern-nav[b-seoe8kewlf] {
    overflow-y: scroll !important;
    overflow-x: hidden;

    /* Firefox */
    scrollbar-width: auto;
    scrollbar-color: var(--pm-nav-scrollbar) rgba(255, 255, 255, 0.18);
}

.modern-nav[b-seoe8kewlf]::-webkit-scrollbar {
    width: 11px !important;
}

.modern-nav[b-seoe8kewlf]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.16) !important;
    border-radius: 10px;
}

.modern-nav[b-seoe8kewlf]::-webkit-scrollbar-thumb {
    min-height: 44px;
    background: var(--pm-nav-scrollbar) !important;
    border: 2px solid var(--pm-nav-bg);
    border-radius: 10px !important;
}

.modern-nav[b-seoe8kewlf]::-webkit-scrollbar-thumb:hover {
    background: var(--pm-nav-scrollbar-hover) !important;
}

/* Firefox */
@supports (scrollbar-color: auto) {
    .modern-nav[b-seoe8kewlf] {
        scrollbar-color: var(--pm-nav-scrollbar) rgba(255, 255, 255, 0.18) !important;
        scrollbar-width: auto !important;
    }
}

/* Keep the footer and logout behavior unchanged. */

/* /Components/Layout/PublicLayout.razor.rz.scp.css */
/* CSS for PublicLayout component */
.public-layout[b-nvlt8z7pdc] {
    min-height: 100vh;
    background: #f5f7fb;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 15px;
}
/* /Components/Pages/Account/RegisterSupervisor.razor.rz.scp.css */
/* CSS for RegisterSupervisor component */

/* ============================================================
   SUPERVISOR REGISTRATION PAGE
   ============================================================ */

.supervisor-register-page[b-1a6h1hwtjq] {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 34px 24px 50px;
    background: #f4f7fb;
}


/* ============================================================
   MAIN CONTAINER
   ============================================================ */
/*
.supervisor-register-container {
    width: 100%;
    max-width: 1500px;
    background: #ffffff;
    border: 1px solid #12aeda;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}
*/
.supervisor-register-container[b-1a6h1hwtjq] {
    width: min(1200px, calc(100% - 40px));
    margin: 32px auto 60px auto;
}


/* ============================================================
   HEADER
   ============================================================ */

.supervisor-register-header[b-1a6h1hwtjq] {
    width: 100%;
    padding: 17px 28px;
    background: #12aeda;
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 700;
}


/* ============================================================
   MAIN HORIZONTAL BODY
   ============================================================ */

.supervisor-register-body[b-1a6h1hwtjq] {
    display: grid;
    grid-template-columns: minmax(300px, 0.7fr) minmax(760px, 2fr);
    gap: 42px;
    padding: 42px 36px 26px;
}


/* ============================================================
   LEFT INTRO PANEL
   ============================================================ */

.registration-intro[b-1a6h1hwtjq] {
    padding: 8px 8px 20px;
}


.registration-icon[b-1a6h1hwtjq] {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 8px;
    background: #edf8fc;
    color: #0d6efd;
    font-size: 2rem;
}


.registration-intro h1[b-1a6h1hwtjq] {
    margin: 0 0 4px;
    color: #101828;
    font-size: 2rem;
    font-weight: 700;
}


.registration-subtitle[b-1a6h1hwtjq] {
    margin-bottom: 24px;
    color: #475569;
    font-size: 1.15rem;
}


.registration-description[b-1a6h1hwtjq] {
    max-width: 360px;
    margin-bottom: 22px;
    color: #334155;
    font-size: 1rem;
    line-height: 1.7;
}


.registration-info-box[b-1a6h1hwtjq] {
    max-width: 385px;
    padding: 16px 18px;
    background: #f3f6ff;
    border-left: 4px solid #0d6efd;
    border-radius: 5px;
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.6;
}


/* ============================================================
   FORM SECTION
   ============================================================ */

.registration-form-section[b-1a6h1hwtjq] {
    width: 100%;
    min-width: 0;
}


/* ============================================================
   GRID SYSTEM
   ============================================================ */

.form-grid[b-1a6h1hwtjq] {
    display: grid;
    gap: 16px;
    margin-bottom: 15px;
}


/* First / Middle / Last
   Username / Email / Role */

.form-grid-three[b-1a6h1hwtjq] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}


/* Phone + Country.
   Leaves visual room on right similar to screenshot. */

.form-grid-two-thirds[b-1a6h1hwtjq] {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
}


    .form-grid-two-thirds > :first-child[b-1a6h1hwtjq] {
        grid-column: 1;
    }


    .form-grid-two-thirds > :nth-child(2)[b-1a6h1hwtjq] {
        grid-column: 2;
    }


/* ============================================================
   FIELDS
   ============================================================ */

.registration-field[b-1a6h1hwtjq] {
    min-width: 0;
}


    .registration-field .form-label[b-1a6h1hwtjq] {
        display: block;
        margin-bottom: 6px;
        color: #1f2937;
        font-size: 0.94rem;
        font-weight: 700;
    }


    .registration-field .form-control[b-1a6h1hwtjq],
    .registration-field .form-select[b-1a6h1hwtjq] {
        width: 100%;
        min-height: 44px;
        border: 1px solid #cbd5e1;
        border-radius: 4px;
        font-size: 0.94rem;
    }


        .registration-field .form-control:focus[b-1a6h1hwtjq],
        .registration-field .form-select:focus[b-1a6h1hwtjq] {
            border-color: #0d6efd;
            box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.13);
        }


/* ============================================================
   INPUT GROUPS
   ============================================================ */

.input-group-text[b-1a6h1hwtjq] {
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #334155;
}


.input-group .form-control[b-1a6h1hwtjq] {
    min-width: 0;
}


/* ============================================================
   HELPER TEXT
   ============================================================ */

.form-text[b-1a6h1hwtjq] {
    margin-top: 5px;
    color: #64748b;
    font-size: 0.83rem;
    line-height: 1.4;
}


/* ============================================================
   PASSWORD LAYOUT
   ============================================================ */

.password-layout[b-1a6h1hwtjq] {
    display: grid;
    grid-template-columns: minmax(230px, 0.9fr) minmax(250px, 1fr) minmax(250px, 1fr);
    gap: 16px;
    align-items: end;
    margin-top: 8px;
    margin-bottom: 18px;
}




/* ============================================================
   TERMS
   ============================================================ */

.terms-area[b-1a6h1hwtjq] {
    margin-top: 4px;
    margin-bottom: 18px;
    padding: 2px 0;
}


    .terms-area .form-check-label[b-1a6h1hwtjq] {
        color: #1f2937;
        font-size: 0.92rem;
    }


    .terms-area a[b-1a6h1hwtjq] {
        color: #0d6efd;
        text-decoration: none;
    }


        .terms-area a:hover[b-1a6h1hwtjq] {
            text-decoration: underline;
        }


/* ============================================================
   SUBMIT BUTTON
   ============================================================ */

.create-supervisor-button[b-1a6h1hwtjq] {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0d6efd;
    border: 1px solid #0d6efd;
    border-radius: 4px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
}


    .create-supervisor-button:hover[b-1a6h1hwtjq],
    .create-supervisor-button:focus[b-1a6h1hwtjq] {
        background: #0b5ed7;
        border-color: #0b5ed7;
        color: #ffffff;
    }


/* ============================================================
   SIGN-IN AREA
   ============================================================ */

.signin-section[b-1a6h1hwtjq] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #e5e7eb;
    color: #64748b;
    font-size: 0.95rem;
}


    .signin-section a[b-1a6h1hwtjq] {
        color: #0d6efd;
        font-weight: 700;
        text-decoration: none;
    }


        .signin-section a:hover[b-1a6h1hwtjq] {
            text-decoration: underline;
        }


/* ============================================================
   VALIDATION
   ============================================================ */

.validation-message[b-1a6h1hwtjq] {
    display: block;
    margin-top: 4px;
    color: #dc3545;
    font-size: 0.82rem;
}


.registration-alert[b-1a6h1hwtjq] {
    margin-bottom: 18px;
}


/* ============================================================
   RESPONSIVE - TABLET
   ============================================================ */

@media (max-width: 1100px) {

    .supervisor-register-body[b-1a6h1hwtjq] {
        grid-template-columns: 1fr;
    }


    .registration-description[b-1a6h1hwtjq],
    .registration-info-box[b-1a6h1hwtjq] {
        max-width: none;
    }


    .registration-intro[b-1a6h1hwtjq] {
        padding-bottom: 5px;
    }
}


/* ============================================================
   RESPONSIVE - SMALL TABLET
   ============================================================ */

@media (max-width: 850px) {

    .form-grid-three[b-1a6h1hwtjq] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .form-grid-two-thirds[b-1a6h1hwtjq] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .password-layout[b-1a6h1hwtjq] {
        grid-template-columns: 1fr 1fr;
    }


    
}


/* ============================================================
   RESPONSIVE - MOBILE
   ============================================================ */

@media (max-width: 600px) {

    .supervisor-register-page[b-1a6h1hwtjq] {
        padding: 15px 8px 30px;
    }


    .supervisor-register-body[b-1a6h1hwtjq] {
        padding: 25px 16px;
    }


    .supervisor-register-header[b-1a6h1hwtjq] {
        padding: 16px 18px;
    }


    .form-grid-three[b-1a6h1hwtjq],
    .form-grid-two-thirds[b-1a6h1hwtjq],
    .password-layout[b-1a6h1hwtjq] {
        grid-template-columns: 1fr;
    }


        .form-grid-two-thirds > :first-child[b-1a6h1hwtjq],
        .form-grid-two-thirds > :nth-child(2)[b-1a6h1hwtjq] {
            grid-column: auto;
        }


    .registration-intro h1[b-1a6h1hwtjq] {
        font-size: 1.7rem;
    }

    @media (max-width: 600px) {

        .password-fields[b-1a6h1hwtjq] {
            grid-template-columns: 1fr;
        }
    }



    /* New styles for styling password create message. 08.16.2026 */


    /* ============================================================
   PASSWORD SECTION
   ============================================================ */
/*
    .password-section {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 18px;
    }
*/

    /* ============================================================
   PASSWORD REQUIREMENTS MESSAGE
   ============================================================ */

    .password-requirements[b-1a6h1hwtjq] {
        width: 100%;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 16px;
        margin-bottom: 14px;
        background: #eef8ff;
        border-left: 4px solid #0d6efd;
        border-radius: 5px;
        color: #334155;
        font-size: 0.88rem;
        line-height: 1.45;
    }


        .password-requirements > i[b-1a6h1hwtjq] {
            margin-top: 2px;
            color: #0d6efd;
            font-size: 1rem;
        }


        .password-requirements strong[b-1a6h1hwtjq] {
            display: block;
            margin-bottom: 2px;
            color: #1e40af;
            font-weight: 700;
        }


    /*
   Allows the password requirement text to use the
   available horizontal space instead of wrapping
   into several short lines.
*/
    .password-requirements-text[b-1a6h1hwtjq] {
        max-width: 850px;
    }


    /* ============================================================
   PASSWORD INPUT FIELDS
   ============================================================ */

   /* .password-fields {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 18px;
        width: 100%;
    }*/

  /*  .password-section {
        grid-column: 1 / -1;
    }*/

    /* ============================================================
   PASSWORD REQUIREMENTS
   ============================================================ */

    .password-requirements[b-1a6h1hwtjq] {
        width: 100%;
        max-width: none;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 14px 18px;
        margin-bottom: 14px;
        background-color: #eef8ff;
        border: 1px solid #b8daff;
        border-left: 4px solid #0d6efd;
        border-radius: 5px;
        color: #334155;
        font-size: 0.95rem;
        line-height: 1.45;
    }


        .password-requirements > i[b-1a6h1hwtjq] {
            flex-shrink: 0;
            margin-top: 2px;
            color: #0d6efd;
            font-size: 1.05rem;
        }


        .password-requirements strong[b-1a6h1hwtjq] {
            display: block;
            margin-bottom: 3px;
            color: #1e40af;
            font-weight: 700;
        }

/*
    .password-requirements-text {
        width: 100%;
        max-width: none;
        white-space: normal;
        color: #334155;
    }*/

    .password-requirements-text[b-1a6h1hwtjq] {
        width: 100%;
        max-width: none;
        white-space: normal;
        color: #334155;
        margin-bottom: 18px;
    }

    .password-section[b-1a6h1hwtjq] {
        width: 100%;
        grid-column: 1 / -1;
        margin-top: 10px;
        margin-bottom: 18px;
    }

    .password-fields[b-1a6h1hwtjq] {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 18px;
        width: 100%;
        margin:18px;
    }


}
/* /Components/Pages/BulkImport/BulkImportBranches.razor.rz.scp.css */
/* CSS for BulkImportBranches component */


.bulk-import-page[b-ptw7w8dvlx] {
    width: 100%;
}

.page-header-row[b-ptw7w8dvlx] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

    .page-header-row h2[b-ptw7w8dvlx] {
        margin: 0 0 5px;
        font-size: 1.75rem;
        font-weight: 600;
    }

.card-header[b-ptw7w8dvlx] {
    font-weight: 700;
}

.bulk-actions[b-ptw7w8dvlx] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 12px 30px;
}

.table th[b-ptw7w8dvlx] {
    white-space: nowrap;
    font-weight: 700;
}
/* /Components/Pages/Company/Branches/CreateBranch.razor.rz.scp.css */
/* CSS for CreateBranch component */

.branch-page[b-f761q87kfr] {
    width: 100%;
}

.page-header[b-f761q87kfr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

    .page-header h2[b-f761q87kfr] {
        margin: 0 0 5px;
        font-size: 1.75rem;
        font-weight: 600;
    }

.card-header[b-f761q87kfr] {
    font-weight: 700;
}

.form-label[b-f761q87kfr] {
    font-weight: 600;
}

.form-actions[b-f761q87kfr] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}
/* /Components/Pages/Company/Branches/ListOfBranches.razor.rz.scp.css */
/* CSS for ListOfBranches component */

.branch-list-page[b-zz822s610t] {
    width: 100%;
}

.page-header-row[b-zz822s610t] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
}

    .page-header-row h2[b-zz822s610t] {
        margin: 0 0 5px;
        font-size: 1.75rem;
        font-weight: 600;
    }

.top-actions[b-zz822s610t],
.bottom-actions[b-zz822s610t] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.bottom-actions[b-zz822s610t] {
    padding: 20px 12px 28px;
}

.branch-list-header[b-zz822s610t] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.page-size-wrapper[b-zz822s610t] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-size-label[b-zz822s610t] {
    margin: 0;
    font-weight: 600;
    white-space: nowrap;
}

.page-size-select[b-zz822s610t] {
    width: 80px;
}

.table th[b-zz822s610t] {
    font-weight: 700;
    white-space: nowrap;
}

.table td[b-zz822s610t] {
    vertical-align: middle;
}

.pagination-footer[b-zz822s610t] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: #f8fafc;
    border-top: 1px solid #dee2e6;
}

.modal-overlay[b-zz822s610t] {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
}

.confirmation-dialog[b-zz822s610t] {
    width: 100%;
    max-width: 480px;
    padding: 24px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}
/* /Components/Pages/Company/CompanyDetails.razor.rz.scp.css */
/* CSS for CompanyDetails component */

.company-details-page[b-87g0c5odv4] {
    width: 100%;
}

.page-header-row[b-87g0c5odv4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

    .page-header-row h2[b-87g0c5odv4] {
        margin: 0 0 4px;
        font-size: 1.9rem;
        font-weight: 600;
    }

.header-actions[b-87g0c5odv4],
.branch-actions[b-87g0c5odv4],
.bottom-actions[b-87g0c5odv4] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.company-details-grid[b-87g0c5odv4] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.card-header[b-87g0c5odv4] {
    font-weight: 700;
}

.detail-grid[b-87g0c5odv4] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
}

.detail-label[b-87g0c5odv4] {
    margin-bottom: 3px;
    color: #64748b;
    font-size: 0.85rem;
}

.detail-value[b-87g0c5odv4] {
    color: #1e293b;
    font-weight: 500;
}

.branch-header[b-87g0c5odv4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.empty-branches[b-87g0c5odv4] {
    padding: 35px;
    text-align: center;
    color: #475569;
}

.company-logo[b-87g0c5odv4] {
    max-width: 360px;
    max-height: 180px;
    object-fit: contain;
}

.company-thumbnail[b-87g0c5odv4] {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.bottom-actions[b-87g0c5odv4] {
    margin-top: 22px;
    padding: 12px 0 28px;
}

@media (max-width: 900px) {

    .company-details-grid[b-87g0c5odv4] {
        grid-template-columns: 1fr;
    }

    .branch-header[b-87g0c5odv4] {
        align-items: flex-start;
        flex-direction: column;
    }

    .branch-actions[b-87g0c5odv4] {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}

@media (max-width: 650px) {

    .detail-grid[b-87g0c5odv4] {
        grid-template-columns: 1fr;
    }

    .page-header-row[b-87g0c5odv4] {
        align-items: flex-start;
        flex-direction: column;
    }

    .header-actions[b-87g0c5odv4],
    .bottom-actions[b-87g0c5odv4] {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}

/* ==================================================================================

    COMPANY STAFF STYLES
   ==================================================================================
*/

.company-staff-card[b-87g0c5odv4] {
    border-radius: 8px;
}

.staff-summary-box[b-87g0c5odv4] {
    padding: 14px 16px;
    border: 1px solid #dee2e6;
    border-radius: 7px;
    background: #f8fafc;
}

.staff-summary-label[b-87g0c5odv4] {
    font-size: 0.82rem;
    color: #64748b;
    margin-bottom: 4px;
}

.staff-summary-value[b-87g0c5odv4] {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
}
/* /Components/Pages/Company/Employees/EmployeeList.razor.rz.scp.css */
/* CSS for ListOfEmployees component */

.employee-list-page[b-thxw6b04oi] {
    width: 100%;
}

.page-header-row[b-thxw6b04oi] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

    .page-header-row h2[b-thxw6b04oi] {
        margin: 0;
        font-size: 1.75rem;
        font-weight: 600;
    }

.table th[b-thxw6b04oi] {
    font-weight: 700;
    white-space: nowrap;
}

.table td[b-thxw6b04oi] {
    vertical-align: middle;
}

.bottom-actions[b-thxw6b04oi] {
    display: flex;
    justify-content: flex-end;
    margin-top: 22px;
    margin-bottom: 24px;
}


/* ==============================
   DELETE CONFIRMATION
   ============================== */

.delete-overlay[b-thxw6b04oi] {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
}

.delete-dialog[b-thxw6b04oi] {
    width: 100%;
    max-width: 480px;
    background: #ffffff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

    .delete-dialog h5[b-thxw6b04oi] {
        margin-bottom: 15px;
        font-weight: 700;
    }


.employee-list-page[b-thxw6b04oi] {
    width: 100%;
}


/* =========================================================
   PAGE HEADER
   ========================================================= */

.page-header-row[b-thxw6b04oi] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
}

    .page-header-row h2[b-thxw6b04oi] {
        margin: 0 0 5px;
        font-size: 1.75rem;
        font-weight: 600;
    }


/* Extra breathing room around top Back button */

.top-dashboard-button[b-thxw6b04oi] {
    padding: 8px 12px;
    margin-right: 6px;
}


/* =========================================================
   EMPLOYEE LIST HEADER
   ========================================================= */

.employee-list-header[b-thxw6b04oi] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


.employee-header-actions[b-thxw6b04oi] {
    display: flex;
    align-items: center;
    gap: 16px;
}


.page-size-wrapper[b-thxw6b04oi] {
    display: flex;
    align-items: center;
    gap: 8px;
}


.page-size-label[b-thxw6b04oi] {
    margin: 0;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
}


.page-size-select[b-thxw6b04oi] {
    width: 80px;
}


/* =========================================================
   TABLE
   ========================================================= */

.table th[b-thxw6b04oi] {
    font-weight: 700;
    white-space: nowrap;
}

.table td[b-thxw6b04oi] {
    vertical-align: middle;
}


/* =========================================================
   PAGINATION FOOTER
   ========================================================= */

.employee-pagination-footer[b-thxw6b04oi] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 14px 16px;
    border-top: 1px solid #dee2e6;
    background: #f8fafc;
}


.pagination-summary[b-thxw6b04oi] {
    color: #475569;
    font-size: 0.9rem;
}


.pagination .page-link[b-thxw6b04oi] {
    color: #0d6efd;
}


.pagination .page-item.active .page-link[b-thxw6b04oi] {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #ffffff;
}


/* =========================================================
   BOTTOM DASHBOARD BUTTON
   ========================================================= */

.bottom-dashboard-button[b-thxw6b04oi] {
    display: flex;
    justify-content: flex-end;
    padding: 18px 12px 28px;
    margin-top: 8px;
}


/* =========================================================
   DEACTIVATION MODAL
   ========================================================= */

.delete-overlay[b-thxw6b04oi] {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
}


.delete-dialog[b-thxw6b04oi] {
    width: 100%;
    max-width: 480px;
    padding: 24px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}
/* /Components/Pages/Company/RegisterCompany.razor.rz.scp.css */
/* CSS for RegisterCompany component */

.logo-preview[b-6m5dxj54x7] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    padding: 1rem;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    background: #f8fafc;
}

    .logo-preview img[b-6m5dxj54x7] {
        display: block;
        max-width: 100%;
        max-height: 220px;
        object-fit: contain;
    }

.thumbnail-preview[b-6m5dxj54x7] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    padding: 0.5rem;
    border: 1px dashed #cbd5e1;
    border-radius: 16px;
    background: #f8fafc;
}

    .thumbnail-preview img[b-6m5dxj54x7] {
        display: block;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.card[b-6m5dxj54x7] {
    border-radius: 14px;
}

.card-header[b-6m5dxj54x7] {
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

.form-label[b-6m5dxj54x7] {
    font-size: 0.86rem;
    font-weight: 600;
    color: #334155;
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* ============================================================
   HOME ACTION BUTTONS
   ============================================================ */

.home-action-buttons[b-mdrb9otg1g] {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    margin-top: 30px;
    margin-bottom: 10px;
}


/* ============================================================
   PRIMARY HOME BUTTON
   ============================================================ */

.home-primary-button[b-mdrb9otg1g] {
    min-width: 150px;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background-color: #0d6efd;
    border: 1px solid #0d6efd;
    border-radius: 4px;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}


    .home-primary-button:hover[b-mdrb9otg1g] {
        background-color: #0b5ed7;
        border-color: #0b5ed7;
        color: #ffffff;
        box-shadow: 0 4px 10px rgba(13, 110, 253, 0.18);
    }


    .home-primary-button:focus[b-mdrb9otg1g] {
        color: #ffffff;
        box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.20);
    }


/* Register button needs additional width */

.supervisor-register-button[b-mdrb9otg1g] {
    min-width: 300px;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 650px) {

    .home-action-buttons[b-mdrb9otg1g] {
        flex-direction: column;
        gap: 12px;
    }


    .home-primary-button[b-mdrb9otg1g],
    .supervisor-register-button[b-mdrb9otg1g] {
        width: 100%;
        min-width: 0;
    }
}




/* =========================================================
   HOME PAGE
   Property Rental Management Platform
   ========================================================= */

.home-page[b-mdrb9otg1g] {
    min-height: 100vh;
    background: #f3f6fb;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 30px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
}


/* =========================================================
   MAIN PANEL
   ========================================================= */

.home-panel[b-mdrb9otg1g] {
    width: 100%;
    max-width: 1100px;
    background: #ffffff;
    border: 2px solid #12aeda;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}


/* =========================================================
   HEADER
   ========================================================= */

.home-header[b-mdrb9otg1g] {
    padding: 24px 28px;
    background: #12aeda;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
}


/* NO PURPLE */

.home-accent[b-mdrb9otg1g] {
    height: 3px;
    background: #12aeda;
}


/* =========================================================
   CONTENT
   ========================================================= */

.home-body[b-mdrb9otg1g] {
    padding: 36px 38px 40px;
}

    .home-body h1[b-mdrb9otg1g] {
        margin: 0 0 12px;
        font-size: 34px;
        font-weight: 700;
        color: #111827;
    }

    .home-body p[b-mdrb9otg1g] {
        max-width: 900px;
        margin-bottom: 18px;
        font-size: 18px;
        line-height: 1.7;
        color: #334155;
    }


/* =========================================================
   BUTTONS
   ========================================================= */

.home-actions[b-mdrb9otg1g] {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.home-button[b-mdrb9otg1g] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 10px 24px;
    background: #0d6efd;
    border: 2px solid #0d6efd;
    border-radius: 4px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

    .home-button:hover[b-mdrb9otg1g] {
        background: #0b5ed7;
        border-color: #0b5ed7;
        color: #ffffff;
        text-decoration: none;
    }


/* OPTIONAL OUTLINE BUTTON */

.home-button-outline[b-mdrb9otg1g] {
    background: #ffffff;
    color: #0d6efd;
}

    .home-button-outline:hover[b-mdrb9otg1g] {
        background: #0d6efd;
        color: #ffffff;
    }


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 700px) {

    .home-page[b-mdrb9otg1g] {
        padding: 20px 12px;
    }

    .home-header[b-mdrb9otg1g] {
        padding: 20px;
        font-size: 21px;
    }

    .home-body[b-mdrb9otg1g] {
        padding: 28px 22px;
    }

        .home-body h1[b-mdrb9otg1g] {
            font-size: 28px;
        }

    .home-actions[b-mdrb9otg1g] {
        flex-direction: column;
    }

    .home-button[b-mdrb9otg1g] {
        width: 100%;
    }
}



.home-page[b-mdrb9otg1g] {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 32px 24px;
    background: #f4f7fb;
}


.home-card[b-mdrb9otg1g] {
    width: 100%;
    max-width: 1180px;
    background: #ffffff;
    border: 1px solid #12aeda;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}


.home-card-header[b-mdrb9otg1g] {
    padding: 22px 28px;
    background: #12aeda;
    color: #ffffff;
    font-size: 1.45rem;
    font-weight: 700;
}


.home-card-body[b-mdrb9otg1g] {
    padding: 38px 36px 32px;
}


    .home-card-body h1[b-mdrb9otg1g] {
        margin-bottom: 18px;
        font-size: 2rem;
        font-weight: 700;
        color: #111827;
    }


    .home-card-body p[b-mdrb9otg1g] {
        color: #1f2937;
        font-size: 1.05rem;
        line-height: 1.75;
        margin-bottom: 20px;
    }
/* /Components/Pages/LandlordCreate.razor.rz.scp.css */
/* CSS for LandlordCreate component */

.phone-group[b-a05libjss8] {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
    width: 100%;
}

    .phone-group .phone-country[b-a05libjss8] {
        flex: 0 0 35%;
        width: 35%;
        min-width: 0;
    }

    .phone-group .phone-number[b-a05libjss8] {
        flex: 1 1 auto;
        width: 45%;
        min-width: 0;
    }

    .phone-group .phone-extension[b-a05libjss8] {
        flex: 0 0 65px;
        width: 65px;
        min-width: 65px;
        max-width: 65px;
    }

/* ================================================================= */

.landlord-page[b-a05libjss8] {
    padding: 24px;
}

.landlord-page-header[b-a05libjss8] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

    .landlord-page-header h2[b-a05libjss8] {
        margin-bottom: 4px;
        font-weight: 700;
    }

.landlord-section[b-a05libjss8] {
    background: #ffffff;
    border: 1px solid #d9dee7;
    border-radius: 7px;
    margin-bottom: 15px;
    overflow: hidden;
}

.section-header[b-a05libjss8] {
    width: 100%;
    border: none;
    background: #f8fafc;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    text-align: left;
}

    .section-header:hover[b-a05libjss8] {
        background: #f1f5f9;
    }

.section-body[b-a05libjss8] {
    padding: 20px;
    border-top: 1px solid #e2e8f0;
}

.address-heading[b-a05libjss8] {
    font-weight: 650;
    margin-bottom: 14px;
}

.large-text-area[b-a05libjss8] {
    min-height: 130px;
    resize: vertical;
}

.form-actions[b-a05libjss8] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 18px 0 30px 0;
}

.validation-message[b-a05libjss8] {
    color: #dc3545;
    font-size: 0.82rem;
    margin-top: 4px;
}

.phone-input-row[b-a05libjss8] {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.phone-country[b-a05libjss8] {
    flex: 0 0 38%;
    min-width: 0;
}

.phone-number[b-a05libjss8] {
    flex: 1 1 auto;
    min-width: 0;
}

.phone-extension[b-a05libjss8] {
    flex: 0 0 72px;
    min-width: 72px;
    max-width: 72px;
}
/* /Components/Pages/Legal/PrivacyPolicyViewer.razor.rz.scp.css */
/* CSS for PrivacyPolicyViewer component */

html[b-szp4xdhsr6],
body[b-szp4xdhsr6] {
    height: 100%;
}


/* ============================================================
   LEGAL DOCUMENT VIEWER
   ============================================================ */

.legal-viewer-page[b-szp4xdhsr6] {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f4f7fb;
    overflow: hidden;
}


/* ============================================================
   TOP TOOLBAR
   ============================================================ */

.legal-toolbar[b-szp4xdhsr6] {
    min-height: 68px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    background-color: #12aeda;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}


.legal-toolbar-title[b-szp4xdhsr6] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}


/* ============================================================
   TOOLBAR BUTTONS
   ============================================================ */

.legal-toolbar-actions[b-szp4xdhsr6] {
    display: flex;
    align-items: center;
    gap: 10px;
}


.legal-toolbar-button[b-szp4xdhsr6] {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    font-size: 1.15rem;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}


    .legal-toolbar-button:hover[b-szp4xdhsr6] {
        background: rgba(255, 255, 255, 0.25);
        border-color: #ffffff;
        color: #ffffff;
    }


.legal-close-button:hover[b-szp4xdhsr6] {
    background: #dc3545;
    border-color: #dc3545;
}


/* ============================================================
   PDF AREA
   ============================================================ */

.legal-document-container[b-szp4xdhsr6] {
    flex: 1;
    min-height: 0;
    display: flex;
    justify-content: center;
    padding: 18px;
    overflow: hidden;
    background: #e9eef5;
}


.legal-pdf-frame[b-szp4xdhsr6] {
    width: 100%;
    height: 100%;
    max-width: 1100px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    box-shadow: 0 5px 18px rgba(15, 23, 42, 0.10);
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 600px) {

    .legal-toolbar[b-szp4xdhsr6] {
        padding: 0 12px;
    }

    .legal-toolbar-title[b-szp4xdhsr6] {
        font-size: 1rem;
    }

    .legal-toolbar-button[b-szp4xdhsr6] {
        width: 38px;
        height: 38px;
    }

    .legal-document-container[b-szp4xdhsr6] {
        padding: 8px;
    }
}
/* /Components/Pages/Legal/TermsViewer.razor.rz.scp.css */
/* CSS for TermsViewer component */

html[b-ialmx6ff04],
body[b-ialmx6ff04] {
    height: 100%;
}


/* ============================================================
   LEGAL DOCUMENT VIEWER
   ============================================================ */

.legal-viewer-page[b-ialmx6ff04] {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f4f7fb;
    overflow: hidden;
}


/* ============================================================
   TOP TOOLBAR
   ============================================================ */

.legal-toolbar[b-ialmx6ff04] {
    min-height: 68px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    background-color: #12aeda;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}


.legal-toolbar-title[b-ialmx6ff04] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}


/* ============================================================
   TOOLBAR BUTTONS
   ============================================================ */

.legal-toolbar-actions[b-ialmx6ff04] {
    display: flex;
    align-items: center;
    gap: 10px;
}


.legal-toolbar-button[b-ialmx6ff04] {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    font-size: 1.15rem;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}


    .legal-toolbar-button:hover[b-ialmx6ff04] {
        background: rgba(255, 255, 255, 0.25);
        border-color: #ffffff;
        color: #ffffff;
    }


.legal-close-button:hover[b-ialmx6ff04] {
    background: #dc3545;
    border-color: #dc3545;
}


/* ============================================================
   PDF AREA
   ============================================================ */

.legal-document-container[b-ialmx6ff04] {
    flex: 1;
    min-height: 0;
    display: flex;
    justify-content: center;
    padding: 18px;
    overflow: hidden;
    background: #e9eef5;
}


.legal-pdf-frame[b-ialmx6ff04] {
    width: 100%;
    height: 100%;
    max-width: 1100px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    box-shadow: 0 5px 18px rgba(15, 23, 42, 0.10);
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 600px) {

    .legal-toolbar[b-ialmx6ff04] {
        padding: 0 12px;
    }

    .legal-toolbar-title[b-ialmx6ff04] {
        font-size: 1rem;
    }

    .legal-toolbar-button[b-ialmx6ff04] {
        width: 38px;
        height: 38px;
    }

    .legal-document-container[b-ialmx6ff04] {
        padding: 8px;
    }
}
/* /Components/Pages/Login.ObsolteteBlazor.razor.rz.scp.css */
.login-wrapper[b-sorva9vhuz] {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card[b-sorva9vhuz] {
    width: 100%;
    max-width: 520px;
    background: #ffffff;
    border: 1px solid #dfe4ea;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.login-title-bar[b-sorva9vhuz] {
    background: #173b6c;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 14px 20px;
}

.login-body[b-sorva9vhuz] {
    padding: 28px;
}

.portal-heading[b-sorva9vhuz] {
    text-align: center;
    margin-bottom: 28px;
}

    .portal-heading h3[b-sorva9vhuz] {
        margin-bottom: 4px;
        font-weight: 600;
        color: #1d2939;
    }

.portal-icon[b-sorva9vhuz] {
    font-size: 30px;
    color: #173b6c;
    margin-bottom: 8px;
}

.form-label[b-sorva9vhuz] {
    font-weight: 500;
    color: #344054;
}

.form-control[b-sorva9vhuz],
.input-group-text[b-sorva9vhuz] {
    min-height: 44px;
}

.login-button[b-sorva9vhuz] {
    min-height: 46px;
    font-weight: 600;
}

.forgot-password-link[b-sorva9vhuz] {
    text-decoration: none;
    font-size: 0.9rem;
}

.login-footer[b-sorva9vhuz] {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #edf0f4;
    color: #667085;
}

    .login-footer a[b-sorva9vhuz] {
        display: inline-block;
        margin-top: 4px;
        font-weight: 600;
        text-decoration: none;
    }
/* /Components/Pages/Login.razor.rz.scp.css */
/* CSS for Login component */


.login-shell[b-5craqb3yqi] {
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: #f3f6fb;
}

.login-panel[b-5craqb3yqi] {
    width: 100%;
    max-width: 1100px;
    background: #ffffff;
    border: 2px solid #12aeda;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.login-header[b-5craqb3yqi] {
    padding: 20px 28px;
    background: linear-gradient( 90deg, #12b4d9, #17a9d8 );
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
}

.login-accent[b-5craqb3yqi] {
    height: 3px;
    background: #12aeda;
}
.login-content[b-5craqb3yqi] {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 48px;
    padding: 38px 40px;
}

.login-intro[b-5craqb3yqi] {
    padding-right: 20px;
}

.intro-icon[b-5craqb3yqi] {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 12px;
    background: #eef8ff;
    color: #0d6efd;
    font-size: 28px;
}

.login-intro h2[b-5craqb3yqi] {
    margin-bottom: 6px;
    color: #172033;
    font-size: 2rem;
    font-weight: 600;
}

.login-intro h5[b-5craqb3yqi] {
    margin-bottom: 18px;
    color: #475467;
    font-weight: 500;
}

.login-intro p[b-5craqb3yqi] {
    max-width: 580px;
    color: #475467;
    line-height: 1.65;
}

.intro-note[b-5craqb3yqi] {
    margin-top: 18px;
    padding: 14px 16px;
    background: #f6f8ff;
    border-left: 4px solid #6a4cff;
    border-radius: 5px;
}

.login-form-area[b-5craqb3yqi] {
    padding: 6px 0;
}

    .login-form-area h4[b-5craqb3yqi] {
        color: #172033;
        font-size: 1.75rem;
        font-weight: 600;
    }

.form-label[b-5craqb3yqi] {
    font-weight: 600;
    color: #344054;
}

.form-control[b-5craqb3yqi],
.input-group-text[b-5craqb3yqi] {
    min-height: 46px;
}

.input-group-text[b-5craqb3yqi] {
    min-width: 46px;
    justify-content: center;
    background: #f8fafc;
    color: #475467;
}

.form-control:focus[b-5craqb3yqi] {
    border-color: #5d9df5;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.12);
}

.forgot-password-link[b-5craqb3yqi] {
    text-decoration: none;
    font-size: 0.9rem;
    color: #0d6efd;
}

    .forgot-password-link:hover[b-5craqb3yqi] {
        text-decoration: underline;
    }

.login-footer[b-5craqb3yqi] {
    margin-top: 24px;
    padding-top: 20px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    border-top: 1px solid #e7ebf0;
    color: #667085;
}

    .login-footer a[b-5craqb3yqi] {
        font-weight: 700;
        text-decoration: none;
        color: #0d6efd;
    }

        .login-footer a:hover[b-5craqb3yqi] {
            text-decoration: underline;
        }

.alert[b-5craqb3yqi] {
    border-radius: 5px;
    font-size: 0.92rem;
}

@media (max-width: 850px) {

    .login-content[b-5craqb3yqi] {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 26px;
    }

    .login-intro[b-5craqb3yqi] {
        padding-right: 0;
    }
}

@media (max-width: 576px) {

    .login-shell[b-5craqb3yqi] {
        padding: 18px 12px;
    }

    .login-header[b-5craqb3yqi] {
        padding: 16px 20px;
        font-size: 1.1rem;
    }

    .login-content[b-5craqb3yqi] {
        padding: 24px 20px;
    }

    .login-intro h2[b-5craqb3yqi] {
        font-size: 1.55rem;
    }

    .login-footer[b-5craqb3yqi] {
        flex-direction: column;
        gap: 3px;
    }

    .btn-primary[b-5craqb3yqi],
    .login-button[b-5craqb3yqi] {
        background-color: #0d6efd;
        border-color: #0d6efd;
        color: #ffffff;
    }

        .btn-primary:hover[b-5craqb3yqi],
        .login-button:hover[b-5craqb3yqi] {
            background-color: #0b5ed7;
            border-color: #0a58ca;
            color: #ffffff;
        }

        .btn-primary:focus[b-5craqb3yqi],
        .login-button:focus[b-5craqb3yqi] {
            background-color: #0b5ed7;
            border-color: #0a58ca;
            box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.20);
        }

    .login-button[b-5craqb3yqi] {
        min-height: 48px;
        font-weight: 700;
        border-radius: 4px;
    }
}
/* /Components/Pages/PropertyDetails.razor.rz.scp.css */
.photo-modal-backdrop[b-b3wgfix9ge] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.photo-modal[b-b3wgfix9ge] {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    width: min(1000px, 95vw);
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.photo-thumb[b-b3wgfix9ge] {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
}

.selected-thumb[b-b3wgfix9ge] {
    border-color: #0d6efd;
}

.photo-modal-backdrop[b-b3wgfix9ge] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 20px;
}

.photo-modal[b-b3wgfix9ge] {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    width: min(1050px, 95vw);
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.photo-thumb[b-b3wgfix9ge] {
    width: 85px;
    height: 85px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
}

    .photo-thumb:hover[b-b3wgfix9ge] {
        border-color: #6c757d;
    }

.selected-thumb[b-b3wgfix9ge] {
    border-color: #0d6efd;
}

.modal-main-photo[b-b3wgfix9ge] {
    display: block;
    max-width: 100%;
    max-height: 600px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}
/* /Components/Pages/Register.razor.rz.scp.css */
body[b-ajrnyq1agj] {
}


.auth-wrapper[b-ajrnyq1agj] {
    max-width: 900px;
    margin: 60px auto;
    border: 4px solid #b8aaf0;
    background: white;
}

.auth-header[b-ajrnyq1agj] {
    background: #08a9df;
    color: white;
    padding: 18px 28px;
    font-weight: 600;
    border-bottom: 4px solid #4b49d8;
}

.auth-body[b-ajrnyq1agj] {
    min-height: 320px;
    padding: 30px;
}

.custom-error-box[b-ajrnyq1agj] {
    background-color: #f8d7da;
    color: #000;
    border: 1px solid #f5c2c7;
    padding: 10px 14px;
    border-radius: 4px;
    margin-bottom: 15px;
}
/* /Components/Pages/Supervisor/SupervisorHome.razor.rz.scp.css */
/* CSS for SupervisorHome component */
.quick-action-btn[b-w0sr79d6ig] {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #ffffff;
    font-weight: 600;
}

    .quick-action-btn:hover[b-w0sr79d6ig] {
        background-color: #0b5ed7;
        border-color: #0a58ca;
        color: #ffffff;
    }
/* /Components/Pages/Tenants/TenantCreate.razor.rz.scp.css */
/* CSS for TenantCreate component */


.tenant-section[b-kfw3gjw19a] {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.section-header[b-kfw3gjw19a] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #f8f9fa;
    cursor: pointer;
}

    .section-header:hover[b-kfw3gjw19a] {
        background: #f1f3f5;
    }

.section-body[b-kfw3gjw19a] {
    padding: 22px;
    border-top: 1px solid #dee2e6;
}

.form-label[b-kfw3gjw19a] {
    font-weight: 600;
}
