:root{
    --nhbl-bg:#f5f7fb;
    --nhbl-card:#ffffff;
    --nhbl-text:#111827;
    --nhbl-muted:#6b7280;
    --nhbl-border:#e5e7eb;
    --nhbl-primary:#111827;
    --nhbl-radius:18px;
    --nhbl-shadow:0 10px 35px rgba(0,0,0,0.06);
}

body.nhbl-profile-body{
    margin:0;
    padding:0;
    background:var(--nhbl-bg);
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
    color:var(--nhbl-text);
}

.nhbl-dashboard-wrap,
.nhbl-profile-wrap{
    width:100%;
    max-width:720px;
    margin:40px auto;
    padding:20px;
    box-sizing:border-box;
}

.nhbl-card{
    background:var(--nhbl-card);
    border-radius:var(--nhbl-radius);
    box-shadow:var(--nhbl-shadow);
    padding:24px;
    margin-bottom:24px;
}

.nhbl-heading{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:20px;
}

.nhbl-form-grid{
    display:grid;
    gap:14px;
}

.nhbl-input,
.nhbl-textarea{
    width:100%;
    border:1px solid var(--nhbl-border);
    border-radius:14px;
    padding:14px 16px;
    box-sizing:border-box;
}

.nhbl-btn{
    background:var(--nhbl-primary);
    color:#fff;
    border:none;
    border-radius:14px;
    padding:14px 18px;
    cursor:pointer;
}

.nhbl-link-list{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.nhbl-link-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:16px;
    border:1px solid var(--nhbl-border);
    border-radius:16px;
    background:#fff;
}

.nhbl-public-links{
    display:flex;
    flex-direction:column;
    gap:16px;
    margin-top:28px;
}

.nhbl-public-link{
    background:#fff;
    border-radius:18px;
    padding:18px;
    text-align:center;
    text-decoration:none;
    color:#111827;
    font-weight:600;
    box-shadow:var(--nhbl-shadow);
}

.nhbl-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.55);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
    padding:20px;
}

.nhbl-modal-content{
    width:100%;
    max-width:520px;
    background:#fff;
    border-radius:24px;
    padding:28px;
    position:relative;
}
