:root{
  --brand-900:#0D5B4A;        /* vert principal (barre/nav/boutons) */
  --brand-700:#16715D;        /* vert hover */
  --brand-100:#E6F0EE;        /* bandeau clair */
  --brand-900-rgb:13,91,74;
  --brand-700-rgb:22,113,93;
  --page-bg-start:#f7fbfa;
  --page-bg-end:#eef4f1;
  --card-tint-1:#ffffff;
  --card-tint-2:#f8fbfa;
  --ink-900:#102A2A;          /* texte principal */
  --ink-600:#435355;          /* texte secondaire */
  --border:#E5E7EB;           /* bordures légères */
  --bg:#F7F9FA;               /* fond page */
  --card:#FFFFFF;
  --radius:14px;
  --shadow:0 8px 28px rgba(16,42,42,.08);
  --focus:0 0 0 3px rgba(var(--brand-700-rgb),.25);
  --page-max:1280px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:linear-gradient(180deg,var(--page-bg-start) 0%,var(--page-bg-end) 100%);
  color:var(--ink-900);
  font:16px/1.5 system-ui,-apple-system,Segoe UI,Roboto,Inter,sans-serif;
}


/* Contenu */
.container{max-width:min(var(--page-max),calc(100vw - 32px)); margin:24px auto; padding:0 16px}


/* Boutons génériques */
button,
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#f5f9f7;
  color:var(--ink-900);
  font-weight:700;
  cursor:pointer;
  text-decoration:none;
  transition:all .15s ease;
}
button:hover,
.btn:hover{
  border-color:var(--brand-700);
  box-shadow:0 8px 22px rgba(16,42,42,.12);
  transform:translateY(-1px);
}
button:focus-visible,
.btn:focus-visible{
  outline:var(--focus);
}
.btn.primary{
  background:var(--brand-900);
  color:#fff;
  border-color:var(--brand-900);
}
.btn.primary:hover{
  background:var(--brand-700);
  border-color:var(--brand-700);
}
.btn.outline{
  background:transparent;
  border:1px solid var(--brand-700);
  color:var(--brand-700);
}
.btn.outline:hover{
  background:rgba(var(--brand-700-rgb),.08);
}
.btn-primary{background:var(--brand-900); color:#fff; border-color:var(--brand-900)}
.btn-primary:hover{background:var(--brand-700); border-color:var(--brand-700)}
.btn-ghost{background:transparent; color:var(--brand-900)}
.btn-ghost:hover{background:rgba(var(--brand-900-rgb),.08)}

.tabs{display:flex;gap:8px;margin-bottom:12px;}
.tab-btn{
  border:1px solid var(--border);
  background:#f7faf9;
  padding:8px 12px;
  border-radius:10px;
  cursor:pointer;
  font-weight:600;
  transition:all .15s ease;
}
.tab-btn.active{
  border-color:var(--brand-700);
  color:var(--brand-700);
  box-shadow:0 6px 16px rgba(var(--brand-900-rgb),.12);
}

.stack{display:grid;gap:12px;}
.grid{display:grid;gap:12px;}
.grid[style*="--cols"]{grid-template-columns:repeat(var(--cols), minmax(0,1fr));}
.muted{color:#6b7280;font-size:.9rem;}

.card.form-card{max-width:min(1500px,100%);margin:0 auto;padding:22px;border-radius:16px;border:1px solid #e3e8e5;box-shadow:0 18px 45px rgba(15,23,42,.08);}
.form-group{display:grid;gap:6px;}
.badge-soft{display:inline-flex;align-items:center;gap:6px;padding:6px 10px;border-radius:999px;background:rgba(var(--brand-900-rgb),.08);color:var(--brand-900);font-weight:600;}

/* Formulaires */
input, select, textarea{
  border:1px solid var(--border);
  border-radius:10px;
  padding:10px 12px;
  font:inherit;
  background:#fff;
  transition:border .12s ease, box-shadow .12s ease;
}
input:focus, select:focus, textarea:focus{
  outline:none;
  border-color:var(--brand-700);
  box-shadow:var(--focus);
}

.card{background:var(--card); border:1px solid var(--border); border-radius:var(--radius); box-shadow:var(--shadow); padding:18px}

/* Titres */
h1{font-size:34px; margin:8px 0 18px}
h2{font-size:24px; margin:12px 0}

/* Formulaires */
label{display:block; margin:.5rem 0 .25rem; color:var(--ink-600)}
input[type="text"], input[type="number"], input[type="email"], select{
  width:100%; max-width:420px;
}


/* Tables (catalogue/commandes) */
table{width:100%; border-collapse:collapse; background:var(--card); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow)}
th,td{padding:12px 14px; text-align:left; border-bottom:1px solid var(--border)}
th{background:#FAFBFC; color:var(--ink-600); font-weight:700}
tr:last-child td{border-bottom:0}

/* Footer */
.footer{max-width:1180px; margin:24px auto; padding:16px; color:var(--ink-600)}

/* Grille 2 colonnes sur desktop, 1 colonne sur mobile */
.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:24px;
}
@media (max-width: 900px){
  .grid-2{ grid-template-columns: 1fr; }
}

/* Branding dans le header */
.brand-wrap{display:flex;align-items:center;gap:10px;margin-right:12px}
.brand-name{font-weight:800;letter-spacing:.5px}
.error{color:#d33;margin:.25rem 0 1rem}

/* compléter les inputs (tu n'avais pas le password) */
input[type="password"]{
  width:100%; max-width:420px;
}
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
.password-field{
  position:relative;
  display:flex;
  align-items:center;
}
.password-field input{
  width:100%;
  max-width:none;
  padding-right:70px;
}
.password-toggle{
  position:absolute;
  top:6px;
  right:12px;
  bottom:6px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:46px;
  padding:0;
  border:0;
  border-left:1px solid rgba(var(--brand-900-rgb),.12);
  border-radius:0 10px 10px 0;
  background:transparent;
  color:#43615b;
  box-shadow:none;
  transition:background .18s ease,border-color .18s ease,color .18s ease;
}
.password-toggle:hover{
  background:rgba(var(--brand-900-rgb),.04);
  color:var(--brand-900);
  border-color:rgba(var(--brand-900-rgb),.18);
}
.password-toggle.is-active{
  color:var(--brand-900);
  background:rgba(var(--brand-900-rgb),.08);
  border-color:rgba(var(--brand-900-rgb),.22);
}
.password-toggle__icon{
  position:absolute;
  width:19px;
  height:19px;
  transition:opacity .16s ease;
}
.password-toggle__icon--hide{
  opacity:0;
}
.password-toggle.is-active .password-toggle__icon--show{
  opacity:0;
}
.password-toggle.is-active .password-toggle__icon--hide{
  opacity:1;
}
.password-toggle:focus-visible{
  outline:none;
  background:rgba(var(--brand-900-rgb),.06);
  box-shadow:0 0 0 3px rgba(var(--brand-700-rgb),.12);
}
.password-field.is-revealed input{
  border-color:rgba(var(--brand-900-rgb),.28);
}

/* grille et champs pour formulaires */
.form{display:grid; gap:14px;}
.form-grid-2{
  display:grid; grid-template-columns:1fr 1fr; gap:12px;
}
@media (max-width: 600px){
  .form-grid-2{grid-template-columns:1fr;}
}
.field label{display:block; margin:.5rem 0 .25rem; color:var(--ink-600); font-weight:600;}
.help{display:block; margin-top:.25rem; font-size:.85rem; color:var(--ink-600); opacity:.85;}

/* séparateur, actions, badge optionnel */
.divider{height:1px; background:var(--border); margin:.25rem 0 .25rem;}
.actions{display:flex; gap:.5rem; align-items:center; margin-top:.25rem;}
.badge-optional{
  display:inline-block; margin-left:.4rem; padding:.1rem .45rem;
  font-size:.78rem; font-weight:700; color:var(--brand-900);
  background:var(--brand-100); border-radius:8px;
}

/* alertes plus visibles (optionnel) */
.error{color:#b3261e; background:#fdeceb; border:1px solid #f3c3bf; padding:.5rem .75rem; border-radius:10px;}

.alerts{margin:16px auto 0}
.alert{
  background:#eef6f3;
  border:1px solid #cfe9e1;
  color:var(--brand-900);
  padding:10px 12px;
  border-radius:10px;
  box-shadow:var(--shadow);
}
.alert.error{background:#fdeceb;border-color:#f3c3bf;color:#b3261e}
.alert.success{background:#e8f6ee;border-color:#c6ecd9;color:var(--brand-900)}

/* Toast notifications */
.js .alerts,
.js .alert,
.js .flash{display:none}
.toast-wrap{
  position:fixed;
  top:80px;
  right:18px;
  display:flex;
  flex-direction:column;
  gap:10px;
  z-index:3000;
}
@media (max-width: 720px){
  .toast-wrap{
    top:72px;
    right:12px;
    left:12px;
  }
  .toast{max-width:100%;}
}
.toast{
  background:linear-gradient(135deg,#ffffff 0%,#f2fbf7 100%);
  color:#0f172a;
  padding:12px 42px 12px 14px;
  border-radius:14px;
  border:1px solid rgba(var(--brand-900-rgb),.18);
  box-shadow:0 16px 40px rgba(6,22,16,.18);
  min-width:240px;
  max-width:360px;
  display:flex;
  align-items:flex-start;
  gap:10px;
  position:relative;
  overflow:hidden;
  opacity:1;
  transform:translateX(8px) scale(.98);
  animation:toast-in .35s ease forwards;
}
.toast-body{display:flex;flex-direction:column;gap:2px;min-width:0}
.toast-title{font-size:.72rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:rgba(var(--brand-900-rgb),.85)}
.toast-text{font-size:.96rem;color:#0f172a;word-break:break-word}
.toast-close{
  position:absolute;
  top:8px;
  right:8px;
  border:0;
  background:transparent;
  color:rgba(15,23,42,.55);
  font-size:1.1rem;
  cursor:pointer;
  padding:2px 6px;
  border-radius:8px;
}
.toast-close:hover{background:rgba(15,23,42,.06);color:rgba(15,23,42,.8)}
.toast.error{background:#fee2e2;color:#7f1d1d;border-color:#fecaca}
.toast.warning{background:#fff4de;color:#8b5a05;border-color:#f0d3a0}
.toast.success{background:#e8f6ee;color:var(--brand-900);border-color:#c6ecd9}
.toast.hide{opacity:0;transform:translateX(12px) scale(.98);transition:opacity .25s ease, transform .25s ease}
.toast::before{
  content:"";
  width:6px;
  align-self:stretch;
  border-radius:10px;
  background:linear-gradient(180deg,var(--brand-900),#34d399);
}
.toast.error::before{background:linear-gradient(180deg,#dc2626,#f87171)}
.toast.warning::before{background:linear-gradient(180deg,#d97706,#f6ad55)}
.toast::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  height:3px;
  width:100%;
  background:linear-gradient(90deg,rgba(var(--brand-900-rgb),.2),rgba(var(--brand-900-rgb),.6));
  animation:toast-progress 4.2s linear forwards;
}
.toast:hover::after{animation-play-state:paused}

.field-validation-error{
  display:block;
  margin-top:6px;
  color:#b3261e;
  font-size:.82rem;
  font-weight:800;
  line-height:1.35;
}
.field-validation-error[hidden]{display:none}
input.is-invalid,
select.is-invalid,
textarea.is-invalid{
  border-color:#d92d20 !important;
  box-shadow:0 0 0 3px rgba(217,45,32,.12) !important;
}
.toast.error::after{background:linear-gradient(90deg,rgba(220,38,38,.2),rgba(220,38,38,.6))}
.toast.warning::after{background:linear-gradient(90deg,rgba(217,119,6,.2),rgba(217,119,6,.55))}
@keyframes toast-in{
  0%{opacity:0;transform:translateX(24px) scale(.96)}
  100%{opacity:1;transform:translateX(0) scale(1)}
}
@keyframes toast-progress{
  from{transform:translateX(-100%)}
  to{transform:translateX(0)}
}

/* Confirmation globale */
.app-confirm{
  position:fixed;
  inset:0;
  z-index:4200;
}
.app-confirm__backdrop{
  position:absolute;
  inset:0;
  background:rgba(8,20,18,.48);
  backdrop-filter:blur(8px);
  opacity:0;
  transition:opacity .18s ease;
}
.app-confirm__dialog{
  position:absolute;
  top:50%;
  left:50%;
  width:min(460px,calc(100vw - 28px));
  padding:24px;
  border-radius:22px;
  border:1px solid rgba(207,229,221,.95);
  background:linear-gradient(180deg,#ffffff,#f5faf8);
  box-shadow:0 34px 72px rgba(6,22,16,.30);
  transform:translate(-50%,-46%) scale(.96);
  opacity:0;
  transition:transform .2s ease,opacity .2s ease;
}
.app-confirm.is-open .app-confirm__backdrop{opacity:1}
.app-confirm.is-open .app-confirm__dialog{
  transform:translate(-50%,-50%) scale(1);
  opacity:1;
}
.app-confirm__eyebrow{
  display:inline-flex;
  align-items:center;
  padding:7px 11px;
  border-radius:999px;
  background:#edf7f3;
  color:var(--brand-900);
  font-size:.74rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.app-confirm__title{
  margin:14px 0 8px;
  font-size:1.35rem;
  line-height:1.15;
}
.app-confirm__message{
  margin:0;
  color:#53645f;
}
.app-confirm__actions{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-top:22px;
  flex-wrap:wrap;
}
.app-confirm__submit.danger{
  background:#9f1d1d;
  border-color:#9f1d1d;
  color:#fff;
}
.app-confirm__submit.danger:hover{
  background:#b91c1c;
  border-color:#b91c1c;
}
@media (max-width: 560px){
  .app-confirm__dialog{padding:20px}
  .app-confirm__actions{display:grid;grid-template-columns:1fr}
}

/* Aide contextuelle */
.help-host{position:relative}
.context-help{
  position:absolute;
  top:18px;
  right:18px;
  z-index:12;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(var(--brand-900-rgb),.18);
  background:linear-gradient(180deg,rgba(255,255,255,.95),rgba(237,247,243,.95));
  color:var(--brand-900);
  box-shadow:0 16px 28px rgba(15,23,42,.12);
  backdrop-filter:blur(12px);
}
.cse-order-page .context-help{
  border-color:rgba(var(--brand-900-rgb),.18);
  background:linear-gradient(180deg,rgba(255,255,255,.96),rgba(237,247,243,.96));
  color:var(--brand-900);
}
.cantine-order-page .context-help,
.cantine-weeks-page .context-help{
  border-color:rgba(166,93,13,.16);
  background:linear-gradient(180deg,rgba(255,251,245,.98),rgba(255,243,226,.98));
  color:#8b4e07;
}
.context-help span{
  display:grid;
  place-items:center;
  width:100%;
  height:100%;
  font-size:1.3rem;
  font-weight:900;
  line-height:1;
}
.context-help:hover{
  transform:translateY(-2px) scale(1.02);
  box-shadow:0 18px 34px rgba(15,23,42,.16);
}
.cse-order-page .context-help:hover{
  border-color:var(--brand-900);
  box-shadow:0 18px 34px rgba(var(--brand-900-rgb),.18);
}
.cantine-order-page .context-help:hover,
.cantine-weeks-page .context-help:hover{
  border-color:#a65d0d;
  box-shadow:0 18px 34px rgba(166,93,13,.16);
}
.context-help--compact{
  width:38px;
  height:38px;
  top:14px;
  right:14px;
}
.context-help--compact span{font-size:1.02rem}

.help-modal{
  position:fixed;
  inset:0;
  z-index:4000;
}
.help-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(8,20,18,.46);
  backdrop-filter:blur(8px);
  opacity:0;
  transition:opacity .2s ease;
}
.help-modal__dialog{
  position:absolute;
  top:50%;
  left:50%;
  width:min(640px,calc(100vw - 28px));
  max-height:min(82vh,760px);
  overflow:auto;
  padding:28px 24px 24px;
  border-radius:28px;
  border:1px solid rgba(207,229,221,.9);
  background:linear-gradient(180deg,#ffffff,#f4faf7);
  box-shadow:0 40px 80px rgba(6,22,16,.28);
  transform:translate(-50%,-46%) scale(.96);
  opacity:0;
  transition:transform .22s ease, opacity .22s ease;
}
.help-modal.is-open .help-modal__backdrop{opacity:1}
.help-modal.is-open .help-modal__dialog{
  transform:translate(-50%,-50%) scale(1);
  opacity:1;
}
.help-modal__close{
  position:absolute;
  top:16px;
  right:16px;
  width:40px;
  height:40px;
  border-radius:50%;
  border:1px solid rgba(15,23,42,.08);
  background:#fff;
  color:#475467;
  font-size:1.35rem;
  box-shadow:none;
}
.help-modal__eyebrow{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:#edf7f3;
  color:var(--brand-900);
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.help-modal__title{
  margin:16px 0 8px;
  font-size:2rem;
  line-height:1.05;
  color:#14342e;
}
.help-modal__intro{
  margin:0 0 18px;
  color:#5d6f6a;
  font-size:1rem;
}
.help-modal__list{
  display:grid;
  gap:12px;
}
.help-modal__item{
  display:grid;
  grid-template-columns:44px 1fr;
  gap:12px;
  align-items:flex-start;
  padding:15px 16px;
  border-radius:20px;
  background:#ffffff;
  border:1px solid #dfe9e5;
  box-shadow:0 12px 28px rgba(17,43,37,.06);
}
.help-modal__index{
  display:grid;
  place-items:center;
  width:44px;
  height:44px;
  border-radius:16px;
  background:linear-gradient(180deg,var(--brand-900),var(--brand-700));
  color:#fff;
  font-weight:900;
}
.help-modal__item p{
  margin:0;
  color:#18352f;
  line-height:1.55;
}
@media (max-width: 720px){
  .context-help{
    width:42px;
    height:42px;
    top:12px;
    right:12px;
  }
  .help-modal__dialog{
    width:calc(100vw - 18px);
    padding:22px 18px 18px;
    border-radius:22px;
  }
  .help-modal__title{font-size:1.55rem}
  .help-modal__item{grid-template-columns:38px 1fr;padding:13px}
  .help-modal__index{width:38px;height:38px;border-radius:12px}
}

/* === Mes commandes : compléments légers === */

/* Message d'information (état vide) */
.message{
  background:#fff; border:1px solid var(--border);
  padding:12px 14px; border-radius:10px; box-shadow:var(--shadow);
  color:var(--ink-600);
}
.message.info{
  background:#f3f7fb; border-color:#d8e6f3; color:#164a6b;
}

/* Badges de statut */
.statut{
  display:inline-block;
  padding:4px 10px;
  border-radius:999px;
  font-weight:700;
  font-size:.9rem;
  border:1px solid transparent;
}
.statut-pending{        /* En attente */
  background:#fff6e5; border-color:#ffe3b3; color:#8a5400;
}
.statut-confirmed{      /* Confirmée */
  background:var(--brand-100); border-color:#cfe9e1; color:var(--brand-900);
}
.statut-paid{           /* Payée */
  background:#e8f6ee; border-color:#c6ecd9; color:var(--brand-900);
}
.statut-cancelled{      /* Annulée */
  background:#fdeceb; border-color:#f3c3bf; color:#b3261e;
}

/* Table : petits plus discrets */
table tr:hover td{ background:#fafcfd; }
td.text-right{ text-align:right; }
td.nowrap{ white-space:nowrap; }
.mono{ font-family:ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; letter-spacing:.2px; }
.diagnostic-log{
  max-height:360px;
  overflow:auto;
  margin:0;
  padding:16px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#101d1a;
  color:#e7f7f0;
  font:13px/1.55 ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
  white-space:pre-wrap;
  word-break:break-word;
}

/* Diagnostic technique */
.smtp-results{
  display:grid;
  gap:16px;
}
.smtp-card{
  border:1px solid var(--border);
  border-radius:16px;
  background:#fff;
  box-shadow:0 12px 28px rgba(16,42,42,.06);
  overflow:hidden;
}
.smtp-card.is-ok{
  border-color:#bfe6d2;
}
.smtp-card.is-error{
  border-color:#f1c2bd;
}
.smtp-card__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding:16px;
  background:linear-gradient(180deg,#f8fbfa,#fff);
  border-bottom:1px solid var(--border);
}
.smtp-card__head strong{
  display:block;
  color:var(--ink-900);
  font-size:1rem;
}
.smtp-card__head span{
  display:block;
  color:var(--ink-600);
  font-size:.88rem;
  margin-top:4px;
}
.smtp-status{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  min-width:72px;
  padding:7px 10px;
  border-radius:999px;
  background:#eef8f4;
  color:var(--brand-900) !important;
  font-weight:900;
}
.smtp-card.is-error .smtp-status{
  background:#fdeceb;
  color:#b3261e !important;
}
.smtp-error{
  margin:14px 16px 0;
  padding:12px 14px;
  border-radius:12px;
  background:#fff3f2;
  color:#9f221b;
  border:1px solid #f1c2bd;
  font-weight:800;
}
.smtp-steps{
  list-style:none;
  margin:0;
  padding:16px;
  display:grid;
  gap:10px;
}
.smtp-steps li{
  display:grid;
  grid-template-columns:minmax(180px,260px) minmax(0,1fr);
  gap:12px;
  align-items:start;
  padding:12px;
  border-radius:12px;
  background:#f8fbfa;
  border:1px solid #e2ece8;
}
.smtp-steps li.is-error{
  background:#fff7f6;
  border-color:#f1c2bd;
}
.smtp-steps strong{
  display:block;
  color:var(--ink-900);
}
.smtp-steps span{
  display:block;
  margin-top:4px;
  color:var(--ink-600);
  font-size:.82rem;
}
.smtp-steps pre{
  margin:0;
  max-height:160px;
  overflow:auto;
  white-space:pre-wrap;
  word-break:break-word;
  font:12px/1.45 ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
  color:#17352d;
}
@media (max-width: 760px){
  .smtp-card__head{display:grid}
  .smtp-steps li{grid-template-columns:1fr}
}
/* Navigation commune : Utilisateurs, Droits et MFA */
.admin-identity-nav{
  display:grid;
  grid-template-columns:minmax(180px,.38fr) minmax(0,1fr);
  gap:14px;
  align-items:stretch;
  padding:14px;
  border:1px solid rgba(13,91,74,.13);
  border-radius:22px;
  background:linear-gradient(135deg,#102f29,#174d41);
  box-shadow:0 18px 46px rgba(12,46,39,.14);
}
.admin-identity-nav__intro{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:3px;
  padding:8px 12px;
  color:#fff;
}
.admin-identity-nav__intro span{
  color:#A9D2C7;
  font-size:.68rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.admin-identity-nav__intro strong{font-size:1.05rem}
.admin-identity-nav__links{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:8px;
}
.admin-identity-nav__link{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
  min-height:64px;
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:15px;
  color:#E4F2EE;
  background:rgba(255,255,255,.07);
  text-decoration:none;
  transition:transform .18s ease,background .18s ease,border-color .18s ease;
}
.admin-identity-nav__link:hover{
  transform:translateY(-1px);
  border-color:rgba(255,255,255,.26);
  background:rgba(255,255,255,.13);
}
.admin-identity-nav__link.is-active{
  border-color:#fff;
  color:#123B32;
  background:#fff;
  box-shadow:0 8px 22px rgba(0,0,0,.13);
}
.admin-identity-nav__link svg{flex:0 0 25px;width:25px;height:25px}
.admin-identity-nav__link span{display:flex;min-width:0;flex-direction:column;gap:1px}
.admin-identity-nav__link strong{font-size:.84rem}
.admin-identity-nav__link small{overflow:hidden;color:inherit;font-size:.68rem;opacity:.72;text-overflow:ellipsis;white-space:nowrap}
@media(max-width:800px){
  .admin-identity-nav{grid-template-columns:1fr}
  .admin-identity-nav__intro{padding:4px 6px}
}
@media(max-width:560px){
  .admin-identity-nav__links{grid-template-columns:1fr}
  .admin-identity-nav__link{min-height:54px}
}
