:root {
  --blue: #176fc8;
  --side-w: 196px;
  --side-collapsed-w: 48px;
  --blue-dark: #0f4f93;
  --bg: #f4f6f9;
  --line: #d8dde8;
  --text: #142033;
  --muted: #65708a;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
}

#app { min-height: 100vh; display: flex; }
.side {
  width: var(--side-w);
  background: #f7f8fa;
  border-right: 1px solid var(--line);
  padding: 12px;
  transition: width .18s ease, padding .18s ease;
  flex-shrink: 0;
}
.side-collapse-btn {
  width: 100%;
  height: 28px;
  border: 0;
  border-radius: 5px;
  background: #edf2f7;
  color: #38556f;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 8px;
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1;
}
.side-collapse-btn:hover { background: #e3e9f1; color: var(--blue); }
.side-collapsed .side {
  width: var(--side-collapsed-w);
  padding: 8px 4px;
}
.side-collapsed .side-collapse-btn {
  justify-content: center;
  padding: 0;
}
.side-collapsed .brand,
.side-collapsed .menu-title { display: none !important; }
.side-collapsed .nav {
  padding: 9px 0;
  text-align: center;
  font-size: 0;
}
.side-collapsed .nav::first-letter { font-size: 13px; }
.brand {
  background: transparent;
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  padding: 6px 2px 16px;
  margin-bottom: 14px;
  border-radius: 0;
  font-size: 20px;
}
.menu-title {
  margin: 14px 4px 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 4px;
}
.nav.active { background: var(--blue); color: #fff; font-weight: 700; }
.super-only { display: none; }
.super-admin .super-only { display: block; }
.super-admin .client-only { display: none !important; }
.super-admin .client-managed { display: none !important; }
.access-only { display: none; }
.super-admin .access-only,
.admin-client-user .access-only { display: block; }
.manager-only { display: none; }
.manager-user .client-standard-nav { display: none !important; }
.manager-user .manager-only { display: block; }
.manager-user .manager-hidden { display: none !important; }
.manager-user.manager-projection-view .manager-saisie-section { display: none !important; }
.manager-user.manager-saisie-view .manager-projection-section { display: none !important; }
main { flex: 1; min-width: 0; }
header {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.admin-topbar {
  height: 64px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 9px 14px 8px;
  border-bottom: 1px solid var(--line);
}
.portal-brand {
  min-width: 0;
  max-width: min(46vw, 620px);
  padding-right: 18px;
}
.portal-client {
  color: var(--blue);
  font-size: clamp(13px, 1.25vw, 20px);
  line-height: 1.08;
  font-weight: 800;
  text-transform: uppercase;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  overflow-wrap: anywhere;
}
.portal-module {
  color: #6b7280;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.portal-search {
  justify-self: center;
  width: min(420px, 100%);
  height: 34px;
  display: grid;
  grid-template-columns: 28px 1fr 28px;
  align-items: center;
  border: 1px solid #cdd5df;
  background: #fff;
  color: #667085;
}
.portal-search input {
  border: 0;
  box-shadow: none;
  margin: 0;
  padding: 6px 4px;
  font-size: 12px;
}
.portal-product {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #1f2a44;
  font-size: 17px;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
}
.admin-user-menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  white-space: nowrap;
  grid-column: 2;
  z-index: 2;
}
.portal-user-text {
  display: grid;
  justify-items: end;
  line-height: 1.1;
  color: #4b5563;
  font-size: 11px;
}
.portal-user-text strong { color: #2f3a4a; font-size: 11px; text-transform: uppercase; }
.portal-user-text span { color: #7b8494; font-size: 10px; text-transform: uppercase; }
.portal-avatar {
  width: 36px;
  height: 36px;
  border: 2px solid #d7e6f7;
  border-radius: 50%;
  background: #eaf4ff;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 18px;
  font-weight: 800;
  overflow: hidden;
}
.portal-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.portal-icon {
  position: relative;
  width: 30px;
  height: 30px;
  border: 0;
  border-left: 1px solid #e1e6ee;
  background: #fff;
  color: #667085;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.badge-dot {
  position: absolute;
  top: 1px;
  right: 1px;
  min-width: 14px;
  height: 14px;
  padding: 0 3px;
  border-radius: 999px;
  background: #eef2f7;
  color: #64748b;
  font-size: 9px;
  line-height: 14px;
  font-weight: 800;
}
.admin-menubar {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 12px;
  background: #fbfbfc;
  border-bottom: 1px solid #e1e6ee;
}
.admin-menubar button {
  height: 34px;
  border: 0;
  border-left: 1px solid #e1e6ee;
  border-radius: 0;
  background: transparent;
  color: #5f6775;
  padding: 0 12px;
  font-size: 11px;
  text-transform: uppercase;
}
.admin-menubar button:last-child { border-right: 1px solid #e1e6ee; }
.admin-menubar button:hover,
.admin-menubar button.active {
  color: #1b64b0;
  background: #fff;
  box-shadow: inset 0 -3px 0 var(--blue);
}
.admin-crumb {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  background: #fff;
  color: #64748b;
  font-size: 12px;
}
.admin-crumb button {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #176fc8;
  padding: 0;
  font-size: 12px;
  text-decoration: underline;
}
.admin-user-btn { border: 0; }
.admin-user-dropdown {
  position: absolute;
  right: 0;
  top: 44px;
  z-index: 20;
  display: none;
  width: min(320px, calc(100vw - 24px));
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  box-sizing: border-box;
}
.admin-user-dropdown.show { display: block; }
.admin-user-dropdown * { box-sizing: border-box; }
.admin-user-dropdown label {
  display: grid;
  gap: 6px;
  margin: 8px 0;
  font-size: 12px;
}
.admin-user-dropdown select {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 5px;
}
.admin-user-dropdown button,
.admin-user-dropdown .avatar-upload {
  max-width: 100%;
}
.admin-user-dropdown .logout-action {
  margin-bottom: 10px;
  border-color: #bfdbfe;
  background: #eaf4ff;
  color: #176fc8;
  font-weight: 700;
}
.avatar-upload {
  display: flex;
  justify-content: center;
  margin: 8px 0;
  cursor: pointer;
}
.full { width: 100%; justify-content: center; }
h1 { margin: 0; font-size: 22px; }
h3 { margin: 18px 0 10px; font-size: 16px; }
p { margin: 4px 0 0; color: var(--muted); }
.panel { padding: 18px; }
.hide { display: none !important; }
.card, .login {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.login { width: min(420px, calc(100vw - 40px)); margin: 8vh auto; }
body:not(.authenticated) {
  background: linear-gradient(135deg, #1b2f3a 0%, #345d6e 100%);
}
body:not(.authenticated) #app {
  min-height: 100vh;
  background: linear-gradient(135deg, #1b2f3a 0%, #345d6e 100%);
}
body:not(.authenticated) header { display: none; }
body:not(.authenticated) main {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
}
body:not(.authenticated) .side {
  position: fixed;
  z-index: 3;
  top: 20px;
  left: 12px;
  width: 260px;
  border: 0;
  padding: 0;
  background: transparent;
}
body:not(.authenticated) .side-collapse-btn { display: none; }
body:not(.authenticated) .brand {
  color: transparent;
  margin: 0;
  padding: 0;
  height: 96px;
  position: relative;
}
body:not(.authenticated) .brand::before {
  content: "ciril";
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-size: 56px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: .14em;
  text-transform: lowercase;
}
body:not(.authenticated) .brand::after {
  content: "▥ GROUP";
  position: absolute;
  top: 62px;
  left: 0;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .08em;
}
body:not(.authenticated) .login-ciril-logo {
  position: fixed;
  top: 16px;
  left: 10px;
  z-index: 4;
}
body:not(.authenticated) .login-ciril-logo img {
  width: 180px;
  height: auto;
  display: block;
}
body:not(.authenticated) .brand::before,
body:not(.authenticated) .brand::after { content: none; }
body:not(.authenticated) #loginPanel {
  width: 100%;
  padding: 0;
}
body:not(.authenticated) .login {
  width: min(400px, calc(100vw - 32px));
  margin: 0 auto;
  border: 0;
  border-radius: 4px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .18);
  padding: 38px 50px 22px;
}
body:not(.authenticated) .login h2 {
  font-size: 30px;
  line-height: 1.05;
  margin: 0;
  text-align: center;
  color: #000;
  font-weight: 900;
}
body:not(.authenticated) .login-subtitle {
  color: #555;
  margin: 8px 0 38px;
  text-align: center;
  font-size: 18px;
  line-height: 1.28;
  font-weight: 800;
  text-transform: uppercase;
}
body:not(.authenticated) .login-field {
  position: relative;
  display: grid;
  gap: 12px;
  margin: 0 0 38px;
  color: #000;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}
body:not(.authenticated) .login-field::after {
  content: "♟";
  position: absolute;
  right: 0;
  bottom: 4px;
  color: #1264ff;
  font-size: 17px;
}
body:not(.authenticated) .login-field.password-field::after { content: none; }
body:not(.authenticated) .login-password-toggle {
  position: absolute;
  right: -2px;
  bottom: 0;
  width: 26px;
  height: 26px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
body:not(.authenticated) .login-password-toggle::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 16px;
  height: 10px;
  border: 2px solid #1264ff;
  border-radius: 50%;
}
body:not(.authenticated) .login-password-toggle::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 12px;
  width: 5px;
  height: 5px;
  background: #1264ff;
  border-radius: 50%;
}
body:not(.authenticated) .login-password-toggle.is-visible::before,
body:not(.authenticated) .login-password-toggle.is-visible::after { opacity: .65; }
body:not(.authenticated) .login-field input {
  height: 28px;
  margin: 0;
  padding: 4px 26px 5px 4px;
  border: 0;
  border-bottom: 1px solid #cbd5e1;
  border-radius: 0;
  box-shadow: none;
  color: #111;
  font-size: 12px;
  font-style: italic;
}
body:not(.authenticated) .login-field input:focus {
  outline: none;
  border-bottom-color: #1264ff;
}
body:not(.authenticated) .login-field input::placeholder { color: #777; }
body:not(.authenticated) .login-submit {
  width: 252px;
  height: 50px;
  display: block;
  margin: 4px auto 22px;
  border-radius: 999px;
  border: 0;
  background: #62b1e4;
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
}
.forgot-password-link {
  display: block;
  text-align: center;
  color: #111;
  font-size: 14px;
  text-decoration: underline;
  font-weight: 500;
}
body:not(.authenticated)::after {
  content: "Copyright © Ciril GROUP\\A 4.23.1 (22-10-2025 12:26)";
  white-space: pre;
  position: fixed;
  right: 16px;
  bottom: 18px;
  color: #fff;
  text-align: right;
  font-size: 10px;
  line-height: 1.15;
  font-weight: 700;
}
label { display: block; font-weight: 700; margin: 12px 0; }
input {
  width: 100%;
  margin-top: 6px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
}
button {
  border: 0;
  background: var(--blue);
  color: #fff;
  border-radius: 6px;
  padding: 10px 12px;
  cursor: pointer;
}
button.secondary { background: #e8edf5; color: var(--text); }
button.danger { background: #fee2e2; color: #991b1b; }
button.small { padding: 6px 8px; font-size: 12px; }
.error { color: #b91c1c; font-weight: 700; min-height: 20px; }
.grid { display: grid; gap: 12px; }
.kpis { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.kpis div {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
}
.kpis span { display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; font-weight: 700; }
.kpis strong { display: block; margin-top: 8px; }
.table-wrap { overflow: auto; border: 1px solid var(--line); border-radius: 6px; }
table { width: 100%; border-collapse: collapse; min-width: 900px; }
th, td { border-bottom: 1px solid var(--line); padding: 10px; text-align: left; vertical-align: top; }
th { background: #eef3fa; font-size: 12px; text-transform: uppercase; color: #56617a; }
code { font-family: Consolas, monospace; font-size: 12px; color: var(--blue-dark); }
.num { text-align: right; }
.client-local-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border: 1px solid var(--blue);
  border-radius: 6px;
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}
.client-url-text {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  word-break: break-all;
}
.notice-line {
  display: block;
  margin-top: 4px;
  color: #b45309;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
}
.hint { margin-bottom: 12px; }
.mt { margin-top: 14px; }
.campaign-form {
  display: grid;
  grid-template-columns: 150px 1fr 120px 150px 150px 1fr auto;
  gap: 10px;
  align-items: end;
  margin-bottom: 14px;
}
.campaign-form label { margin: 0; }
.client-form {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 110px 1.6fr 120px 120px auto;
  gap: 10px;
  align-items: end;
  margin-bottom: 14px;
}
.client-form label { margin: 0; }
.access-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 12px;
  align-items: end;
  margin-bottom: 18px;
}
.access-form label { margin: 0; }
.access-form input,
.access-form select {
  width: 100%;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
  padding: 9px 10px;
}
.access-form select {
  background:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%) calc(100% - 18px) 50% / 6px 6px no-repeat,
    linear-gradient(135deg, var(--muted) 50%, transparent 50%) calc(100% - 13px) 50% / 6px 6px no-repeat,
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), inset 0 0 0 1px rgba(255, 255, 255, 0.75);
  cursor: pointer;
  padding: 9px 36px 9px 10px;
  appearance: none;
}
.access-form input:focus,
.access-form select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(14, 145, 201, 0.16);
  outline: none;
}
.access-form .password-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}
.access-form .check {
  align-self: center;
  display: flex;
  gap: 8px;
  min-height: 38px;
  padding-top: 20px;
}
.access-form .check input {
  width: auto;
  min-height: 0;
}
.access-form .form-actions {
  align-self: end;
  display: flex;
  gap: 8px;
}
.access-form .form-actions button {
  min-height: 38px;
  white-space: nowrap;
}
.access-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(280px, 1fr);
  gap: 12px;
  align-items: end;
  margin: 8px 0 12px;
}
.access-toolbar label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.access-toolbar input,
.access-toolbar select {
  width: 100%;
  min-height: 38px;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
  padding: 9px 10px;
}
.access-toolbar select {
  background:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%) calc(100% - 18px) 50% / 6px 6px no-repeat,
    linear-gradient(135deg, var(--muted) 50%, transparent 50%) calc(100% - 13px) 50% / 6px 6px no-repeat,
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), inset 0 0 0 1px rgba(255, 255, 255, 0.75);
  cursor: pointer;
  padding: 9px 36px 9px 10px;
  appearance: none;
}
.hypothesis-form {
  display: grid;
  grid-template-columns: 150px 1.5fr 130px 150px 180px 120px 120px 120px 100px auto;
  gap: 10px;
  align-items: end;
  margin-bottom: 14px;
}
.hypothesis-form label { margin: 0; }
.finance-form {
  display: grid;
  grid-template-columns: 1.4fr 1fr 120px 140px 180px;
  gap: 10px;
  align-items: end;
  margin-bottom: 14px;
}
.finance-form label { margin: 0; }
.import-form {
  display: grid;
  grid-template-columns: 1fr 2fr auto 1fr;
  gap: 10px;
  align-items: end;
  margin-bottom: 14px;
}
.import-form label { margin: 0; }
.check {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
}
.check input {
  width: auto;
  margin: 0;
}
.form-actions { display: flex; gap: 8px; align-items: center; }
.actions-cell { white-space: nowrap; }
.password-tools { display: flex; gap: 8px; align-items: center; }
.password-tools input { min-width: 0; }
.subnav {
  display: flex;
  gap: 8px;
  margin: 18px 0 12px;
  border-bottom: 1px solid var(--line);
}
.subnav-btn {
  background: transparent;
  color: var(--text);
  border-radius: 0;
  padding: 10px 12px;
  border-bottom: 3px solid transparent;
}
.subnav-btn.active {
  color: var(--blue-dark);
  border-bottom-color: var(--blue);
  font-weight: 700;
}
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.module-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  background: #f8fafc;
}
.module-card strong { display: block; margin-bottom: 8px; }
.module-card span { color: var(--muted); }
.pos { color: #087f3b; font-weight: 700; }
.neg { color: #c81e1e; font-weight: 700; }
.muted-cell { color: var(--muted); text-align: center; padding: 18px; }
.family-row td {
  background: #f5f8fc;
  color: var(--blue-dark);
  font-weight: 800;
}
.subtotal-row td,
.total-row td {
  background: #eef3fa;
  font-weight: 800;
}
.budget-wrap {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: auto;
}
.budget-table {
  width: 5110px;
  min-width: 5110px;
  table-layout: fixed;
}
.budget-col-family { width: 270px; }
.budget-col-amount { width: 132px; }
.budget-col-gap { width: 108px; }
.budget-table th,
.budget-table td {
  white-space: nowrap;
  padding: 8px 10px;
  border-right: 1px solid var(--line);
  overflow: hidden;
  text-overflow: ellipsis;
}
.budget-table thead th {
  text-align: center;
  vertical-align: middle;
}
.budget-table .budget-period-head {
  background: #e8eef7;
  border-bottom: 1px solid #cbd5e1;
}
.budget-table .budget-subhead {
  font-size: 11px;
  letter-spacing: 0;
}
.budget-table .budget-planned,
.budget-table .budget-actual,
.budget-table .budget-gap {
  font-variant-numeric: tabular-nums;
}
.budget-table th:first-child,
.budget-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  background: #fff;
  min-width: 270px;
  max-width: 270px;
  white-space: normal;
  line-height: 1.25;
  box-shadow: 1px 0 0 var(--line);
}
.budget-table th:first-child {
  background: #eef3fa;
  z-index: 3;
  text-align: left;
}
.budget-table tfoot td:first-child,
.budget-table .total-row td:first-child {
  background: #eef3fa;
}

@media (max-width: 850px) {
  #app { display: block; }
  .side { width: 100%; border-right: 0; border-bottom: 1px solid var(--line); }
  .kpis { grid-template-columns: 1fr; }
  .campaign-form, .client-form, .access-form, .hypothesis-form, .finance-form, .import-form, .module-grid { grid-template-columns: 1fr; }
  .subnav { display: block; }
  .subnav-btn { width: 100%; text-align: left; }
}

.admin-user-menu { position: relative; display: flex; align-items: center; }
.admin-user-btn { display: flex; align-items: center; gap: 10px; background: transparent; color: var(--text); padding: 6px 8px; border-radius: 6px; }
.admin-user-btn:hover { background: #eef3fa; }
.admin-user-avatar { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 999px; background: var(--blue); color: #fff; font-weight: 800; font-size: 12px; }
.admin-user-dropdown { display: none; position: absolute; right: 0; top: calc(100% + 8px); min-width: 190px; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 10px; box-shadow: 0 8px 24px rgba(20, 32, 51, .14); z-index: 20; }
.admin-user-dropdown.show { display: block; }
button.full { width: 100%; }

body:not(.authenticated) .side .menu-title,
body:not(.authenticated) .side .nav,
body:not(.authenticated) .admin-user-menu { display: none !important; }
body:not(.authenticated) .side { width: 260px; }

header .admin-user-menu { position: relative; display: flex; align-items: center; justify-content: flex-end; gap: 8px; }
header .admin-user-btn.portal-avatar {
  width: 36px;
  height: 36px;
  border: 2px solid #d7e6f7;
  border-radius: 50%;
  background: #eaf4ff;
  color: var(--blue);
  padding: 0;
  font-size: 18px;
}
header .admin-user-btn.portal-avatar:hover { background: #eaf4ff; }
header .admin-user-dropdown {
  top: 44px;
  min-width: 270px;
  border-radius: 5px;
}
