/* /Pages/IfaMemberPage.razor.rz.scp.css */
:root[b-4ztvv7rsre] {
    --bg: #ffffff;
    --card-bg: #f8f9fb;
    --text: #222;
    --muted: #6c757d;
    --accent: #1976d2;
    --chip-bg: #e9eef8;
    --btn-bg: #1976d2;
    --btn-color: #fff;
    --shadow: 0 6px 18px rgba(20,20,20,0.06);
    --radius: 10px;
    --gap: 16px;
    --border: rgba(0,0,0,0.08);        /* primary border color (light) */
    --border-strong: rgba(0,0,0,0.12); /* stronger border for emphasis */
    transition: background-color 200ms linear, color 200ms linear;
}

body.dark-mode[b-4ztvv7rsre] {
    --bg: #0f1115;
    --card-bg: #13161a;
    --text: #e6eef6;
    --muted: #9aa5b1;
    --accent: #90caf9;
    --chip-bg: #1a2230;
    --btn-bg: #90caf9;
    --btn-color: #0b1320;
    --shadow: 0 6px 18px rgba(0,0,0,0.6);
    --border: rgba(255,255,255,0.06);
    --border-strong: rgba(255,255,255,0.10);
}

.member-page[b-4ztvv7rsre] {
    background: var(--bg);
    color: var(--text);
    padding: 18px;
    min-height: 60vh;
    box-sizing: border-box;
}

.member-header[b-4ztvv7rsre] {
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom: 12px;
}

.member-title[b-4ztvv7rsre] {
    font-size:1.6rem;
    margin:0;
    font-weight:600;
}

.member-top[b-4ztvv7rsre] {
    display:flex;
    gap: var(--gap);
    flex-wrap:wrap;
}

/* Card with thicker border for clear separation */
.blockbox[b-4ztvv7rsre] {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
    margin-bottom: 16px;
    transition: background-color 200ms linear, color 200ms linear, box-shadow 200ms linear;
    border: 2px solid var(--border-strong);
}

.blockbox-2[b-4ztvv7rsre] {
    margin-top: 12px;
    padding: 12px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
    border: 2px solid var(--border);
    /* subtle inner contrast so border reads on bright backgrounds */
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

h3[b-4ztvv7rsre] {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    color: var(--text);
    border-bottom: 2px solid var(--border-strong);
    padding-bottom: 8px;
}

h4[b-4ztvv7rsre] {
    margin:0 0 8px 0;
    font-size: 1rem;
    color: var(--muted);
}

/* Roles: vertical list for better readability */
.roles-list[b-4ztvv7rsre] {
    display:flex;
    flex-direction:column;
    gap:8px;
    padding:0;
    margin:0;
    list-style:none;
}

.roles-list li[b-4ztvv7rsre] {
    margin: 0;
}

/* Thicker, rounded role chips */
.role-chip[b-4ztvv7rsre] {
    background: var(--chip-bg);
    color: var(--text);
    padding:8px 12px;
    border-radius: 8px;
    font-size: 0.95rem;
    box-shadow: none;
    border: 2px solid var(--border);
    transition: background-color 150ms linear, color 150ms linear;
    display:inline-block;
}

.avatar[b-4ztvv7rsre] {
    width:64px;
    height:64px;   
    display:flex;
    align-items:center;
    justify-content:center;
    flex: 0 0 64px;
    border: 3px solid var(--border-strong);
}

.info-row[b-4ztvv7rsre] {
    display:flex;
    gap: 12px;
    flex-wrap:wrap;
    align-items:center;
}

/* Input with stronger border */
.sc-input[b-4ztvv7rsre] {
    max-width: 360px;
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    border: 2px solid var(--border);
    background: transparent;
    color: var(--text);
    box-sizing: border-box;
}

.btn-primary[b-4ztvv7rsre] {
    background: var(--btn-bg);
    color: var(--btn-color);
    border: 2px solid transparent;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 120ms ease, opacity 120ms ease, box-shadow 120ms ease;
}

.btn-primary:disabled[b-4ztvv7rsre] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.meta[b-4ztvv7rsre] {
    color: var(--muted);
    font-size:0.95rem;
}

@media (min-width: 800px){
    .member-top[b-4ztvv7rsre] { align-items:flex-start; }
    .blockbox[b-4ztvv7rsre] { padding: 22px; }
}
/* /Pages/UserPage.razor.rz.scp.css */

h2[b-yym394gkif] {
    padding: 10px 0;
}

.blockbox[b-yym394gkif], .blockbox-2[b-yym394gkif] {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: .5rem;
    margin-bottom: .5rem;
    padding: 20px;
}

.blockbox-2[b-yym394gkif] {
    margin-left: 20px;
}

h3[b-yym394gkif], h4[b-yym394gkif] {
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

ul[b-yym394gkif] {
    list-style-type: none;
    padding: 0;
}

li[b-yym394gkif] {
    margin: 10px 0;
    display: flex;
    align-items: center;
}

label[b-yym394gkif] {
    margin-right: 10px;
    font-weight: bold;
}

img[b-yym394gkif] {
    margin-left: 10px;
}

button.btn[b-yym394gkif] {
    background-color: #007bff;
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    button.btn:hover[b-yym394gkif] {
        background-color: #0056b3;
    }
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-gdadrh3thd] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-gdadrh3thd] {
    flex: 1;
}

.sidebar[b-gdadrh3thd] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-gdadrh3thd] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-gdadrh3thd]  a, .top-row .btn-link[b-gdadrh3thd] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-gdadrh3thd] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

.avatar[b-gdadrh3thd] {
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 50%;
}

.top-row-button[b-gdadrh3thd] {
    height: 3rem;
    display: flex;
    padding: 0 1rem;
    border-radius: 0.25rem;
    border: 1px solid #d6d5d5;
    vertical-align: middle;
}

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-gdadrh3thd] {
        display: none;
    }

    .top-row.auth[b-gdadrh3thd] {
        justify-content: space-between;
    }

    .top-row a[b-gdadrh3thd], .top-row .btn-link[b-gdadrh3thd] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-gdadrh3thd] {
        flex-direction: row;
    }

    .sidebar[b-gdadrh3thd] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-gdadrh3thd] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-gdadrh3thd], article[b-gdadrh3thd] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-kb8syrxo6c] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-kb8syrxo6c] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-kb8syrxo6c] {
    font-size: 1.1rem;
}

.oi[b-kb8syrxo6c] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-kb8syrxo6c] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-kb8syrxo6c] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-kb8syrxo6c] {
        padding-bottom: 1rem;
    }

    .nav-item[b-kb8syrxo6c]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-kb8syrxo6c]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-kb8syrxo6c]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-kb8syrxo6c] {
        display: none;
    }

    .collapse[b-kb8syrxo6c] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-kb8syrxo6c] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Shared/TableView.razor.rz.scp.css */
<!--

Make Header allway visible-- >
.header[b-e84ucjdjnw] {
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
}
