/* === Styles extraits de forum-admin.html === */
/* ── ÉCRAN CHARGEMENT AUTH ───────────────────────────────────── */
.auth-loading {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.auth-loading-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red);
}
.auth-loading-sub {
  font-size: .65rem;
  color: var(--muted);
  letter-spacing: .15em;
  text-transform: uppercase;
}
.spinner {
  width: 24px; height: 24px;
  border: 2px solid #333;
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── DASHBOARD ───────────────────────────────────────────────── */
.dashboard { display: none; min-height: 100vh; }

.dash-hdr {
  background: var(--grey2);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dash-logo { font-family: var(--font-display); font-size: 1.4rem; color: var(--red); }
.dash-sub  { font-size: .65rem; color: var(--muted); margin-top: .1rem; }

.dash-actions { display:flex; align-items:center; gap:.6rem; flex-wrap:wrap; justify-content:flex-end; }
.btn-admin-link {
  background: rgba(248,231,2,.08);
  border: 1px solid rgba(248,231,2,.35);
  color: var(--gold);
  padding: .4rem .9rem;
  border-radius: var(--r-sm);
  text-decoration: none;
  cursor: pointer;
  font-size: .72rem;
  font-family: var(--font-body);
  transition: all .2s;
}
.btn-admin-link:hover { background: rgba(248,231,2,.14); border-color: var(--gold); color: var(--white); }
.btn-logout {
  background: transparent;
  border: 1px solid #333;
  color: var(--muted);
  padding: .4rem .9rem;
  border-radius: var(--r-sm);
  cursor: pointer;
  font-size: .72rem;
  font-family: var(--font-body);
  transition: all .2s;
}
.btn-logout:hover { border-color: var(--red); color: var(--white); }

/* ── ONGLETS ─────────────────────────────────────────────────── */
.tabs-bar {
  background: var(--grey2);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex;
  gap: 0;
}
.tab-btn {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  padding: .8rem 1.2rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .82rem;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.tab-btn:hover  { color: var(--white); }
.tab-btn.active { border-bottom-color: var(--red); color: var(--white); }

.badge {
  background: var(--red);
  color: var(--brand-ink, #050505);
  font-size: .55rem;
  padding: .1rem .35rem;
  border-radius: 8px;
  min-width: 16px;
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
}

/* ── CONTENU ─────────────────────────────────────────────────── */
.dash-body { padding: 2rem; max-width: 900px; margin: 0 auto; }

.tab-content        { display: none; }
.tab-content.active { display: block; }

.sec-title {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}

/* ── CARTES UTILISATEURS ─────────────────────────────────────── */
.user-card {
  background: var(--grey);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.2rem;
  margin-bottom: .8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.user-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 600; color: var(--white);
  flex-shrink: 0; text-transform: uppercase;
}
.user-avatar.pending { background: var(--gold); }
.user-avatar.refused { background: #444; }
.user-info   { flex: 1; min-width: 150px; }
.user-name   { font-size: .95rem; font-weight: 500; margin-bottom: .2rem; }
.user-meta   { font-size: .72rem; color: var(--muted); }
.user-group  {
  display: inline-block; font-size: .65rem;
  background: rgba(248,231,2,.1); border: 1px solid rgba(248,231,2,.2);
  color: var(--gold); padding: .15rem .5rem; border-radius: 2px; margin-top: .2rem;
}
.user-actions { display: flex; gap: .4rem; flex-wrap: wrap; align-items: center; }
.btn-action {
  padding: .4rem .8rem; border-radius: var(--r-sm);
  cursor: pointer; font-family: var(--font-body); font-size: .72rem;
  border: 1px solid; transition: all .2s;
}
.btn-approve { background: rgba(50,120,50,.15);  border-color: #2a5a2a; color: #6aba6a; }
.btn-refuse  { background: rgba(120,30,30,.15);  border-color: #5a2020; color: #aa6060; }
.btn-modify  { background: transparent;          border-color: #333;    color: var(--muted); }
.btn-revoke  { background: transparent;          border-color: #5a2020; color: #aa5050; }

/* ── MODALE MODIFICATION ─────────────────────────────────────── */
.modal {
  background: var(--grey);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 2rem;
  width: 95%; max-width: 450px;
  max-height: 85vh; overflow-y: auto;
}
.modal h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1rem; }
.modal-label {
  font-size: .65rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: .08em;
  display: block; margin-bottom: .5rem; margin-top: 1rem;
}
.sub-group { margin-bottom: .8rem; }
.sub-group-lbl {
  font-size: .6rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .4rem;
  display: flex; align-items: center; gap: .4rem;
}
.sub-group-lbl::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.no-sub-note { font-size: .7rem; color: #555; font-style: italic; padding: .2rem 0; }
.modal-row { display: flex; gap: .6rem; margin-top: 1.5rem; }
.modal-row button {
  flex: 1; padding: .75rem; border-radius: var(--r-sm);
  cursor: pointer; font-family: var(--font-body); font-size: .8rem;
  border: none; transition: background .2s;
}
.btn-confirm       { background: var(--red);  color: var(--brand-ink, #050505); }
.btn-confirm:hover { background: var(--red-dark); }
.btn-cancel        { background: #2a2a2a; color: var(--muted); }
.btn-cancel:hover  { background: #333; color: var(--white); }

/* ── MESSAGES ────────────────────────────────────────────────── */
.ch-selector { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.2rem; }
.ch-tag {
  background: #141414; border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: .35rem .8rem;
  cursor: pointer; font-size: .78rem; color: var(--muted);
  transition: all .2s; font-family: var(--font-body);
}
.ch-tag.active { border-color: var(--red); color: var(--white); background: rgba(248,231,2,.08); }
.msg-item {
  background: var(--grey); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: .8rem 1rem; margin-bottom: .5rem;
  display: flex; align-items: flex-start; gap: .8rem;
}
.msg-body        { flex: 1; }
.msg-author-name { font-size: .78rem; color: var(--gold); font-weight: 500; margin-bottom: .2rem; }
.msg-text        { font-size: .82rem; color: var(--white); line-height: 1.5; }
.msg-time        { font-size: .65rem; color: #555; margin-top: .2rem; }
.btn-del {
  background: transparent; border: 1px solid #3a1a1a; color: #aa5a5a;
  padding: .3rem .6rem; border-radius: 2px; cursor: pointer;
  font-size: .7rem; flex-shrink: 0; transition: all .2s; font-family: var(--font-body);
}
.btn-del:hover { background: rgba(248,231,2,.15); border-color: var(--red); }

/* ── BADGES RÔLES ────────────────────────────────────────────── */
.role-badge {
  display: inline-block; font-size: .58rem; font-weight: 500;
  padding: .15rem .5rem; border-radius: 2px; margin-left: .4rem;
  text-transform: uppercase; letter-spacing: .06em;
}
.role-admin { background: rgba(248,231,2,.15); border: 1px solid rgba(248,231,2,.3); color: var(--red); }
.role-prof  { background: rgba(248,231,2,.1);  border: 1px solid rgba(248,231,2,.2); color: var(--gold); }
.role-member{ background: rgba(255,255,255,.04); border: 1px solid #2a2a2a; color: #555; }

/* ── SÉLECTEUR DE RÔLE ───────────────────────────────────────── */
.role-selector { display: flex; gap: .4rem; margin-top: .4rem; flex-wrap: wrap; }
.role-pill {
  padding: .4rem .9rem; border-radius: 20px; cursor: pointer;
  font-size: .72rem; border: 1px solid #2a2a2a; color: #555;
  transition: all .2s; font-family: var(--font-body); background: transparent;
  user-select: none;
}
.role-pill:hover { border-color: #444; color: var(--white); }
.role-pill.active-member { border-color: #555;          color: var(--white); background: rgba(255,255,255,.06); }
.role-pill.active-prof   { border-color: var(--gold);   color: var(--gold);  background: rgba(248,231,2,.1); }
.role-pill.active-admin  { border-color: var(--red);    color: var(--red);   background: rgba(248,231,2,.12); }

.empty-msg { color: var(--muted); font-size: .82rem; padding: 1rem 0; font-style: italic; }

/* ── INFOS ENFANT dans les cartes et la modale ──────────────── */
.enfant-tag {
  display: inline-block; font-size: .68rem;
  background: rgba(248,231,2,.06); border: 1px solid rgba(248,231,2,.18);
  border-left: 2px solid var(--gold); color: var(--gold);
  padding: .2rem .55rem; border-radius: 2px; margin-top: .3rem; margin-right: .3rem;
}
.modal-enfant-block {
  background: rgba(248,231,2,.04);
  border: 1px solid rgba(248,231,2,.15);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-sm);
  padding: .8rem 1rem;
  margin-top: 1rem;
}
.modal-enfant-title {
  font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .6rem;
  display: flex; align-items: center; gap: .4rem;
}
.modal-enfant-title::after { content:""; flex:1; height:1px; background:rgba(248,231,2,.2); }

@media (max-width: 600px) {
  .tabs-bar  { padding: 0 1rem; }
  .dash-hdr { padding: 1rem; align-items:flex-start; gap:.8rem; }
  .dash-actions { flex-direction:column; align-items:stretch; }
  .btn-admin-link, .btn-logout { text-align:center; }
  .dash-body { padding: 1rem; }
  .user-card { gap: .6rem; }
}

.u-forum-admin-inline-1 { background:#2a5a2a }

.u-forum-admin-inline-2 { display:none }

.mod-parent-name { font-size: .65rem; color: var(--muted); text-transform: none; letter-spacing: 0; }


/* ── FTS ÉTAPE 4 — STYLE ADMIN UNIFORME + RÉSUMÉ FORUM ───────── */
* { box-sizing: border-box; }
body { overflow-x: hidden; }
.dashboard {
  background:
    radial-gradient(circle at top left, rgba(248,231,2,.12), transparent 28rem),
    radial-gradient(circle at top right, rgba(248,231,2,.10), transparent 24rem),
    #070707;
}
.dash-hdr {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(14,14,14,.92);
  backdrop-filter: blur(16px);
}
.dash-body {
  max-width: 1120px;
  width: 100%;
}
.tabs-bar {
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs-bar::-webkit-scrollbar { display:none; }
.tab-btn { white-space: nowrap; }
.admin-card,
.user-card,
.msg-item,
.modal {
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}
.admin-card {
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 1rem;
  margin-bottom: 1rem;
}
.admin-card-head {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:1rem;
  margin-bottom:1rem;
}
.admin-card-head h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 .15rem;
  color: var(--white);
  letter-spacing: .02em;
}
.admin-card-head p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.45;
}
.summary-total {
  flex-shrink: 0;
  border: 1px solid rgba(248,231,2,.35);
  background: rgba(248,231,2,.10);
  color: var(--gold);
  border-radius: 999px;
  padding: .45rem .75rem;
  font-size: .75rem;
  font-weight: 700;
  white-space: nowrap;
}
.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .75rem;
}
.summary-card {
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 18px;
  padding: .9rem;
  min-width: 0;
}
.summary-card-top {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.8rem;
  padding-bottom:.65rem;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.summary-card-top strong {
  min-width:0;
  color: var(--white);
  font-size:.95rem;
  overflow:hidden;
  text-overflow:ellipsis;
}
.summary-card-top span {
  flex-shrink:0;
  color: var(--gold);
  font-size:.76rem;
  font-weight:700;
}
.summary-sublist {
  display:flex;
  flex-direction:column;
  gap:.35rem;
  margin-top:.65rem;
}
.summary-subrow {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.6rem;
  color: var(--muted);
  font-size:.78rem;
}
.summary-subrow span {
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.summary-subrow b {
  flex-shrink:0;
  min-width:1.8rem;
  text-align:center;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  color:var(--white);
  padding:.12rem .45rem;
}
.summary-empty-sub {
  margin-top:.65rem;
  color:#777;
  font-size:.75rem;
  font-style:italic;
}
.user-card {
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  border-color: rgba(255,255,255,.08);
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(12px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:1rem;
  z-index:100;
}
.modal-overlay.hidden { display:none; }
.modal {
  border-radius: 24px;
  max-width: 680px;
  background: linear-gradient(145deg, #171717, #101010);
}
.pill,
.role-pill,
.ch-tag,
.btn-admin-link,
.btn-logout,
.btn-action,
.modal-row button {
  min-height: 40px;
  border-radius: 999px;
}

@media (max-width: 700px) {
  .dash-hdr {
    flex-direction: column;
    align-items: stretch;
  }
  .dash-actions {
    flex-direction: row;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: .15rem;
  }
  .btn-admin-link,
  .btn-logout {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .tabs-bar {
    padding: 0 1rem;
  }
  .dash-body {
    padding: 1rem;
    max-width: 100%;
  }
  .admin-card {
    border-radius: 20px;
    padding: .9rem;
  }
  .admin-card-head {
    flex-direction: column;
  }
  .summary-total {
    align-self: flex-start;
  }
  .summary-grid {
    grid-template-columns: 1fr;
  }
  .user-card {
    align-items: flex-start;
  }
  .user-actions {
    width: 100%;
  }
  .user-actions .btn-action {
    flex: 1 1 auto;
  }
  .modal {
    width: 100%;
    max-height: 88vh;
    padding: 1rem;
  }
}

/* Gamification — historique récompenses */
.rewards-history{
  margin-top:1rem;
  padding-top:1rem;
  border-top:1px solid rgba(255,255,255,.08);
}
.rewards-history-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.75rem;
  margin-bottom:.7rem;
}
.rewards-history-head strong{ color:var(--gold); }
.rewards-history-head small{ color:var(--muted); }
.rewards-history-list{ display:flex; flex-direction:column; gap:.55rem; }
.reward-history-item{
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:.75rem;
  padding:.72rem;
  border-radius:18px;
  background:rgba(0,0,0,.26);
  border:1px solid rgba(255,255,255,.08);
}
.reward-history-item.is-artist{ border-color:rgba(248,231,2,.34); background:rgba(248,231,2,.055); }
.reward-history-main{ min-width:0; display:flex; flex-direction:column; gap:.2rem; }
.reward-history-main strong{ color:#fff; }
.reward-history-main small{ color:var(--muted); line-height:1.35; }
.reward-history-badge{
  display:inline-flex;
  width:max-content;
  max-width:100%;
  padding:.24rem .55rem;
  border-radius:999px;
  background:rgba(0,0,0,.42);
  border:1px solid rgba(248,231,2,.22);
  color:#fff;
  font-size:.72rem;
  font-weight:800;
}
.reward-history-actions{ display:flex; gap:.4rem; flex-wrap:wrap; justify-content:flex-end; }
.reward-history-empty{
  padding:.8rem;
  border-radius:16px;
  background:rgba(255,255,255,.035);
  color:var(--muted);
  font-size:.8rem;
}
@media (max-width:620px){
  .reward-history-item{ grid-template-columns:1fr; align-items:stretch; }
  .reward-history-actions{ justify-content:flex-start; }
}

/* FTS v49 — détails utiles enfant dans Accès admin */
.enfant-info {
  color: var(--muted);
  font-weight: 400;
}
.modal-enfant-title .enfant-info {
  font-size: .72rem;
  text-transform: none;
  letter-spacing: 0;
}


/* === V71 — Validation inscription : préparation rapide des rappels demandés === */
.user-reminder-summary{
  margin-top:8px;
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  color:#5f3566;
  font-size:.86rem;
}
.user-reminder-summary span,
.user-reminder-summary em{
  display:inline-flex;
  align-items:center;
  padding:2px 7px;
  border-radius:999px;
  background:rgba(255,255,255,.7);
  color:#7b2d82;
  font-style:normal;
  font-weight:700;
}
.approval-reminder-overlay .approval-reminder-modal{
  max-width:920px;
  width:min(94vw, 920px);
  max-height:88vh;
  overflow:auto;
}
.approval-reminder-intro{
  margin:0 0 14px;
  color:#6b6170;
  line-height:1.35;
}
#approval-reminder-list{
  display:grid;
  gap:12px;
}
.approval-reminder-card{
  border:1px solid rgba(123,45,130,.14);
  background:linear-gradient(135deg,rgba(255,255,255,.94),rgba(255,247,252,.88));
  border-radius:20px;
  padding:14px;
  box-shadow:0 10px 25px rgba(35,14,45,.06);
}
.approval-reminder-card-head{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-start;
  margin-bottom:12px;
}
.approval-reminder-card-head strong{
  display:block;
  color:#23122c;
  font-size:1rem;
}
.approval-reminder-card-head span{
  display:block;
  color:#7b6d80;
  font-size:.88rem;
  margin-top:2px;
}
.approval-enable{
  white-space:nowrap;
  display:inline-flex;
  gap:6px;
  align-items:center;
  font-weight:800;
  color:#7b2d82;
}
.approval-reminder-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
}
.approval-reminder-card label span{
  display:block;
  font-size:.78rem;
  color:#75667a;
  font-weight:800;
  margin-bottom:5px;
}
.approval-reminder-card input,
.approval-reminder-card select,
.approval-reminder-card textarea{
  width:100%;
  border:1px solid rgba(80,50,90,.18);
  border-radius:13px;
  padding:10px 11px;
  font:inherit;
  background:#fff;
  color:#23122c;
}
.approval-full{
  display:block;
  margin-top:10px;
}
.approval-reminder-actions{
  gap:8px;
  flex-wrap:wrap;
}
@media(max-width:760px){
  .approval-reminder-grid{grid-template-columns:1fr 1fr;}
  .approval-reminder-card-head{flex-direction:column;}
}
@media(max-width:480px){
  .approval-reminder-grid{grid-template-columns:1fr;}
}


/* V74 — popup validation : exclusions automatiques compactes */
.approval-auto-exclusions{margin:.55rem 0 .65rem;padding:.62rem .72rem;border-radius:14px;border:1px solid rgba(248,231,2,.2);background:rgba(248,231,2,.08);color:rgba(255,255,255,.82);font-size:.78rem;line-height:1.35}

/* === V81 — Revue obligatoire avant validation d'inscription === */
.approval-review-overlay .approval-review-modal{
  max-width:960px;
  width:min(94vw, 960px);
  max-height:88vh;
  overflow:auto;
}
.approval-review-head{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:flex-start;
  margin-bottom:14px;
}
.approval-review-head h3{margin-bottom:4px;}
.approval-review-head p{
  margin:0;
  color:#6d6172;
  line-height:1.35;
}
.approval-review-close{
  width:38px;
  height:38px;
  border:0;
  border-radius:999px;
  background:rgba(35,18,44,.08);
  color:#23122c;
  font-size:1.45rem;
  line-height:1;
  cursor:pointer;
}
.approval-review-summary{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px;
  border-radius:22px;
  background:linear-gradient(135deg,rgba(123,45,130,.12),rgba(248,231,2,.10));
  border:1px solid rgba(123,45,130,.14);
  margin-bottom:14px;
}
.approval-review-avatar{
  width:48px;
  height:48px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:#7b2d82;
  color:white;
  font-weight:900;
  font-size:1.3rem;
  flex:0 0 auto;
}
.approval-review-name{
  font-weight:900;
  color:#23122c;
  font-size:1.12rem;
}
.approval-review-meta{
  color:#6d6172;
  font-size:.9rem;
  margin-top:2px;
}
.approval-review-section{
  border:1px solid rgba(123,45,130,.13);
  background:rgba(255,255,255,.78);
  border-radius:22px;
  padding:14px;
  margin:12px 0;
}
.approval-review-section h4{
  margin:0 0 10px;
  color:#23122c;
  font-size:1rem;
}
.approval-review-grid,
.approval-access-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}
.approval-kv,
.approval-access-box{
  border:1px solid rgba(35,18,44,.08);
  background:rgba(255,255,255,.86);
  border-radius:16px;
  padding:10px 12px;
  min-width:0;
}
.approval-kv span,
.approval-access-box span{
  display:block;
  color:#75687c;
  font-size:.78rem;
  font-weight:800;
  margin-bottom:4px;
}
.approval-kv strong{
  color:#26172d;
  font-size:.94rem;
  overflow-wrap:anywhere;
}
.approval-kv-wide{grid-column:1/-1;}
.approval-chip{
  display:inline-flex;
  align-items:center;
  padding:4px 8px;
  border-radius:999px;
  background:rgba(123,45,130,.10);
  color:#6f2379;
  font-weight:800;
  font-size:.82rem;
  margin:2px 4px 2px 0;
}
.approval-muted,
.approval-empty{
  color:#7d7182;
  font-size:.9rem;
}
.approval-child-card{
  border:1px solid rgba(123,45,130,.11);
  background:linear-gradient(135deg,rgba(255,255,255,.94),rgba(255,248,253,.9));
  border-radius:18px;
  padding:12px;
  margin:8px 0;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
}
.approval-child-title{
  grid-column:1/-1;
  font-weight:900;
  color:#23122c;
  margin-bottom:2px;
}
.approval-review-list{
  margin:8px 0 0 18px;
  padding:0;
  color:#2b2030;
}
.approval-review-list li{margin:8px 0;}
.approval-review-list span{color:#75687c;}
.approval-note{
  border-radius:16px;
  padding:10px 12px;
  background:rgba(77,174,87,.10);
  border:1px solid rgba(77,174,87,.18);
  color:#2c6d34;
  font-weight:800;
}
.approval-impact ul{
  margin:0 0 0 18px;
  padding:0;
  color:#514456;
  line-height:1.45;
}
.approval-review-actions{
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
  position:sticky;
  bottom:0;
  background:linear-gradient(180deg,rgba(255,255,255,.82),#fff 45%);
  padding-top:10px;
}
@media(max-width:720px){
  .approval-review-grid,
  .approval-access-grid,
  .approval-child-card{grid-template-columns:1fr;}
  .approval-review-head{align-items:flex-start;}
  .approval-review-actions{justify-content:stretch;}
  .approval-review-actions button{width:100%;}
}
