/* ===========================================================================
   EASYTIME — Shell applicatif (sidebar + topbar + onglets, thème clair/sombre)
   Porté fidèlement depuis la maquette "Layout easyTime".
   =========================================================================== */

.appgrid {
    display: grid;
    grid-template-columns: 256px 1fr;
    grid-template-rows: 56px 1fr;
    height: 100vh; min-height: 640px;
    font-family: 'Inter', system-ui, sans-serif;
    --app-bg:#eef2f6; --side-bg:#ffffff; --side-border:#dde3ea; --muted:#94a3b8;
    --item-text:#3f4a5a; --item-icon:#8a95a5; --item-active-text:#1f6fb2; --item-active-icon:#1f6fb2; --item-active-bg:#e8f1fa;
    --row-hover:#f0f5fb; --crumb-muted:#8a95a5; --crumb-link:#1f6fb2; --crumb-current:#1f2937;
    --tabbar-bg:#e6ecf3; --tab-border:#d8e0ea; --tab-bg:#f2f6fb; --tab-text:#55617a; --tab-active-bg:#ffffff; --tab-active-text:#1f2937;
    --ph-bg:#ffffff; --ph-border:#e3e6ec; --ph-title:#475569; --ph-text:#94a3b8; --ph-icon-bg:#eef4fa;
    --item-py:5px; --tab-py:9px;
}
.appgrid[data-theme="dark"] {
    --app-bg:#0f172a; --side-bg:#111a2b; --side-border:#1f2b3d; --muted:#64748b;
    --item-text:#c3cede; --item-icon:#7c8aa0; --item-active-text:#5cb0ec; --item-active-icon:#5cb0ec; --item-active-bg:rgba(31,111,178,0.26);
    --row-hover:#16202f; --crumb-muted:#64748b; --crumb-link:#5cb0ec; --crumb-current:#e5edf5;
    --tabbar-bg:#0b1220; --tab-border:#1f2b3d; --tab-bg:#131d2e; --tab-text:#94a3b8; --tab-active-bg:#0f172a; --tab-active-text:#e5edf5;
    --ph-bg:#111a2b; --ph-border:#1f2b3d; --ph-title:#c3cede; --ph-text:#64748b; --ph-icon-bg:#16233a;
}
.appgrid[data-compact="true"] { --item-py:5px; --tab-py:6px; }
.appgrid[data-collapsed="true"] { grid-template-columns: 64px 1fr; }

/* --- Barre supérieure --- */
.et-topbar {
    grid-column: 1 / -1; display: flex; align-items: center; gap: 12px; padding: 0 16px;
    background: #1f6fb2; background-image: linear-gradient(90deg, #175d9c 0%, #1f6fb2 55%, #2a80c4 100%);
    color: #fff; z-index: 10; border-bottom: 3px solid #F49A47;
}
.et-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; text-decoration: none; }
.et-brand .ico { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: #fff; flex-shrink: 0; }
.et-brand .ico img { width: 27px; height: 27px; display: block; }
.et-brand .txt { font-size: 19px; font-weight: 700; letter-spacing: -.01em; color: #fff; white-space: nowrap; }
.et-brand .txt span { color: #F49A47; }
.et-ctrl {
    display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px;
    background: transparent; border: none; color: rgba(255,255,255,.9); cursor: pointer; transition: background .15s;
}
.et-ctrl:hover { background: rgba(255,255,255,.26); color: #fff; }
.et-search { position: relative; width: 220px; flex-shrink: 0; }
.et-search .lp { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,.8); display: inline-flex; pointer-events: none; }
.et-search input {
    width: 100%; padding: 7px 10px 7px 32px; font-size: 13px; font-family: inherit; color: #fff;
    background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.28); border-radius: 0; outline: none;
}
.et-search input::placeholder { color: rgba(255,255,255,.7); }
.et-search input:focus { background: rgba(255,255,255,.26); border-color: rgba(255,255,255,.6); }
.et-user { display: flex; align-items: center; gap: 9px; padding-left: 12px; border-left: 1px solid rgba(255,255,255,.25); flex-shrink: 0; cursor: pointer; position: relative; }
.et-user .av { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.2); font-size: 12px; font-weight: 600; }
.et-user .n1 { font-size: 12.5px; font-weight: 600; }
.et-user .n2 { font-size: 10.5px; color: rgba(255,255,255,.7); }

/* --- Barre latérale --- */
.et-side { grid-row: 2; grid-column: 1; background: var(--side-bg); border-right: 1px solid var(--side-border); overflow-y: auto; overflow-x: hidden; padding-bottom: 16px; }
.et-side::-webkit-scrollbar { width: 8px; }
.et-side::-webkit-scrollbar-thumb { background: #cbd5e1; }
.appgrid[data-theme="dark"] .et-side::-webkit-scrollbar-thumb { background: #2a3a54; }
.et-grouphdr {
    width: 100%; display: flex; align-items: center; gap: 6px; padding: 14px 14px 6px;
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--muted);
    background: transparent; border: none; cursor: pointer;
}
.et-grouphdr .chev { display: inline-flex; transition: transform .15s; }
.et-grouphdr.closed .chev { transform: rotate(-90deg); }
.et-navrow { display: flex; align-items: center; border-left: 3px solid transparent; transition: background .12s; }
.et-navrow:hover { background: var(--row-hover); }
.et-navrow:hover .et-star { opacity: 1; }
.et-navrow.active { background: var(--item-active-bg); border-left-color: #1f6fb2; }
.et-navmain {
    flex: 1; min-width: 0; display: flex; align-items: center; gap: 11px; justify-content: flex-start;
    padding: var(--item-py) 6px var(--item-py) 13px; font-size: 13px; font-weight: 500; font-family: inherit;
    color: var(--item-text); background: transparent; border: none; cursor: pointer; text-decoration: none;
}
.et-navrow.active .et-navmain { color: var(--item-active-text); font-weight: 600; }
.et-navmain .ic { display: inline-flex; flex-shrink: 0; color: var(--item-icon); }
.et-navrow.active .et-navmain .ic { color: var(--item-active-icon); }
.et-navmain .lb { flex: 1; min-width: 0; text-align: left; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.et-star { display: inline-flex; align-items: center; justify-content: center; width: 34px; flex-shrink: 0; align-self: stretch; background: transparent; border: none; cursor: pointer; opacity: 0; transition: opacity .12s; }
.et-star.on { opacity: 1; }

/* Sidebar réduite */
.appgrid[data-collapsed="true"] .et-grouphdr { justify-content: center; padding: 14px 0 6px; }
.appgrid[data-collapsed="true"] .et-grouphdr span:first-child,
.appgrid[data-collapsed="true"] .et-grouphdr .chev { display: none; }
.appgrid[data-collapsed="true"] .et-navmain { justify-content: center; gap: 0; padding: 10px 0; }
.appgrid[data-collapsed="true"] .et-navmain .lb,
.appgrid[data-collapsed="true"] .et-star { display: none; }

/* --- Zone de contenu --- */
.et-content { grid-row: 2; grid-column: 2; display: flex; flex-direction: column; min-width: 0; background: var(--app-bg); }
.et-tabs { display: flex; align-items: stretch; gap: 3px; padding: 6px 12px 0; background: var(--tabbar-bg); border-bottom: 1px solid var(--tab-border); overflow-x: auto; flex-shrink: 0; }
.et-tab { display: inline-flex; align-items: center; gap: 8px; padding: var(--tab-py) 12px; font-size: 13px; color: var(--tab-text); background: var(--tab-bg); border: 1px solid var(--tab-border); border-bottom: none; cursor: pointer; white-space: nowrap; }
.et-tab.active { background: var(--tab-active-bg); color: var(--tab-active-text); font-weight: 600; }
.et-tab .cl { display: inline-flex; border: none; background: transparent; color: inherit; cursor: pointer; opacity: 0; padding: 0; }
.et-tab:hover .cl, .et-tab.active .cl { opacity: .7; }
.et-tab .cl:hover { opacity: 1; }
.et-scroll { flex: 1; min-height: 0; overflow: auto; padding: 20px 22px 28px; }

/* --- Bannière période --- */
.et-periode {
    display: flex; align-items: center; gap: 16px; margin-bottom: 18px; padding: 14px 20px;
    background: linear-gradient(100deg, #1f6fb2 0%, #2a7fc0 55%, #F49A47 190%);
    box-shadow: 0 8px 22px -12px rgba(31,111,178,.6); color: #fff;
}
.et-periode .ico { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: rgba(255,255,255,.18); color: #fff; flex-shrink: 0; }
.et-periode .lbl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.75); }
.et-periode .val { font-size: 19px; font-weight: 700; color: #fff; letter-spacing: -.01em; }
.et-periode .rng { font-size: 12.5px; color: rgba(255,255,255,.85); }
.et-periode .st { display: inline-block; padding: 2px 10px; font-size: 11px; font-weight: 600; color: #fff; background: rgba(255,255,255,.22); border-radius: 999px; }
.et-periode .btn {
    display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px; font-size: 13.5px; font-weight: 600;
    font-family: inherit; color: #1f6fb2; background: #fff; border: none; cursor: pointer; box-shadow: 0 4px 12px -4px rgba(0,0,0,.3);
}
.et-periode .btn:hover { background: #eef4fa; }

/* Menu utilisateur */
.et-usermenu { position: absolute; right: 0; top: calc(100% + 6px); z-index: 40; min-width: 220px; background: var(--ph-bg); border: 1px solid var(--ph-border); box-shadow: 0 16px 40px -16px rgba(15,23,42,.5); padding: 6px 0; color: var(--crumb-current); }
.et-usermenu a, .et-usermenu button { display: flex; align-items: center; gap: 8px; width: 100%; padding: 9px 16px; font-size: 13.5px; color: var(--crumb-current); background: transparent; border: none; text-align: left; cursor: pointer; text-decoration: none; }
.et-usermenu a:hover, .et-usermenu button:hover { background: var(--row-hover); }

/* --- Barre de modules (topbar) --- */
.et-modules { display: flex; align-items: center; gap: 2px; flex: 1; min-width: 0; overflow-x: auto; }
.et-modules::-webkit-scrollbar { height: 0; }
.et-mod {
    padding: 7px 12px; font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,.85);
    text-decoration: none; white-space: nowrap; border-radius: 0; transition: background .12s;
}
.et-mod:hover { background: rgba(255,255,255,.14); color: #fff; }
.et-mod.active { background: rgba(255,255,255,.18); color: #fff; font-weight: 600; }

/* ===========================================================================
   MAÎTRE-DÉTAIL (écrans d'édition type "Édition zones") — palette claire
   =========================================================================== */
.md-card { background: #fff; border: 1px solid #e3e6ec; font-family: 'Inter', system-ui, sans-serif; }
.md-head { display: flex; align-items: center; gap: 12px; padding: 14px 22px; }
.md-head .ico { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: rgba(244,154,71,.15); color: #c9772e; flex-shrink: 0; }
.md-head h2 { margin: 0; font-size: 17px; font-weight: 600; color: #1f2937; }
.md-head p { margin: 2px 0 0; font-size: 12.5px; color: #8891a0; }
.md-strip { height: 4px; background: #F49A47; }

.md-body { display: grid; grid-template-columns: 300px 1fr; min-height: 460px; }
.md-left { border-right: 1px solid #eef0f4; display: flex; flex-direction: column; min-height: 0; }
.md-left-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 12px 16px; border-bottom: 1px solid #eef0f4; }
.md-left-head .lbl { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: #8891a0; }
.md-add { display: inline-flex; align-items: center; gap: 5px; padding: 5px 10px; font-size: 12.5px; font-weight: 600; color: #fff; background: #1f6fb2; border: none; cursor: pointer; }
.md-add:hover { background: #175d9c; color: #fff; }
.md-list { flex: 1; overflow-y: auto; }
.md-row { display: flex; align-items: center; gap: 10px; padding: 10px 16px; cursor: pointer; border-left: 3px solid transparent; transition: background .12s; }
.md-row:hover { background: #f7f9fc; }
.md-row.sel { border-left-color: #1f6fb2; background: #eaf3fb; }
.md-row .code { flex: 0 0 auto; display: inline-block; min-width: 26px; text-align: center; padding: 2px 8px; font-weight: 600; font-size: 12px; color: #1f6fb2; background: rgba(31,111,178,.12); }
.md-row .nom { font-size: 13.5px; font-weight: 600; color: #1f2937; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.md-row .res { font-size: 11.5px; color: #8891a0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.md-right { display: flex; flex-direction: column; min-width: 0; }
.md-form { flex: 1; overflow: auto; padding: 20px 24px; display: flex; flex-direction: column; gap: 14px; }
.md-field { display: flex; align-items: center; gap: 14px; }
.md-field > label { flex: 0 0 130px; font-size: 13px; font-weight: 600; color: #374151; }
.md-field > label.r { text-align: right; flex-basis: 120px; }
.md-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 14px 22px; border-top: 1px solid #eef0f4; }
.md-del { display: inline-flex; align-items: center; gap: 7px; padding: 9px 18px; font-size: 13.5px; font-weight: 600; color: #dc2626; background: #fff; border: 1.5px solid #f0c2c2; cursor: pointer; }
.md-del:hover { background: #fdecec; border-color: #dc2626; color: #dc2626; }
.md-save { display: inline-flex; align-items: center; gap: 7px; padding: 9px 20px; font-size: 13.5px; font-weight: 600; color: #fff; background: #1f6fb2; border: none; cursor: pointer; }
.md-save:hover { background: #175d9c; color: #fff; }
.md-save:disabled { opacity: .6; cursor: default; }

/* Sélecteur de période (popup) */
.et-periode-opt { display:flex; align-items:center; gap:10px; width:100%; padding:10px 20px; border:none; background:transparent; border-left:3px solid transparent; cursor:pointer; transition:background .12s; }
.et-periode-opt:hover { background: var(--track, #f7f9fc); }
.et-periode-opt.sel { background:#eef5fb; border-left-color:#1f6fb2; }

/* Cartes KPI (Effectifs / rapports) */
.kpi { background:#fff; border:1px solid #e3e6ec; border-left:4px solid #1f6fb2; padding:12px 16px; }
.kpi .kpi-lbl { font-size:11.5px; font-weight:700; text-transform:uppercase; letter-spacing:.03em; color:#8891a0; }
.kpi .kpi-val { font-size:24px; font-weight:700; color:#1f2937; line-height:1.1; margin-top:2px; }
.kpi.kpi-green { border-left-color:#2f855a; } .kpi.kpi-green .kpi-val { color:#2f855a; }
.kpi.kpi-red { border-left-color:#dc2626; } .kpi.kpi-red .kpi-val { color:#dc2626; }
.kpi.kpi-amber { border-left-color:#F49A47; } .kpi.kpi-amber .kpi-val { color:#c9772e; }
[data-bs-theme="dark"] .kpi, .dark-mode .kpi { background:#111a2b; border-color:#1f2b3d; }

/* Fiche licence */
.lic-row { display:flex; align-items:center; gap:14px; padding:9px 0; border-bottom:1px solid #eef0f4; }
.lic-row .lbl { flex:0 0 190px; font-size:12.5px; font-weight:600; color:#8891a0; }
.lic-row .val { font-size:13.5px; color:#1f2937; }
.lic-sep { margin:18px 0 10px; font-size:11.5px; font-weight:700; text-transform:uppercase; letter-spacing:.03em; color:#1f6fb2; border-bottom:2px solid #e8f1fa; padding-bottom:4px; }

/* ===== Lignes de liste compactes (hauteur minimale) ===== */
.table > :not(caption) > * > * { padding-top: .2rem; padding-bottom: .2rem; }
.table td, .table th { line-height: 1.15; vertical-align: middle; }
.table thead th { padding-top: .3rem; padding-bottom: .3rem; }
.table .btn-sm { padding: .12rem .4rem; line-height: 1.1; }
.table .badge { padding: .28em .5em; font-weight: 600; }
.table .form-select-sm, .table .form-control-sm { padding-top: .1rem; padding-bottom: .1rem; }

/* ===== Fiche employé — bloc Généralités aligné (libellés à droite + photo dernière colonne) ===== */
.fe-gen { display:grid; grid-template-columns:150px 1fr 150px 1fr 170px; gap:8px 14px; align-items:center; padding:4px 2px; }
.fe-gen .fe-lb { text-align:right; font-weight:600; font-size:13px; color:#374151; margin:0; }
.fe-gen .fe-photo { grid-column:5; grid-row:1 / span 5; align-self:start; justify-self:center; }
.fe-gen .fe-photo-box { width:150px; height:150px; border:1.5px dashed #d7dbe3; background:#fbfcfe; display:flex; align-items:center; justify-content:center; overflow:hidden; }
@media (max-width:860px){
  .fe-gen { grid-template-columns:130px 1fr; }
  .fe-gen .fe-lb { text-align:left; }
  .fe-gen .fe-photo { grid-column:1 / -1; grid-row:auto; justify-self:start; }
}

/* ===== Onglet Informations biométriques — grille 2 colonnes alignée ===== */
.fe-grid4 { display:grid; grid-template-columns:150px 1fr 150px 1fr; gap:8px 14px; align-items:center; padding:4px 2px; }
.fe-grid4 .fe-lb { text-align:right; font-weight:600; font-size:13px; color:#374151; margin:0; }
.fe-grid4 .fe-qte { width:72px; background:#f7f9fc; color:#6b7280; text-align:center; }
@media (max-width:860px){ .fe-grid4 { grid-template-columns:130px 1fr; } .fe-grid4 .fe-lb { text-align:left; } }

/* ===== Modale employé : largeur raisonnable + hauteur d'onglet statique ===== */
.modal-employe { max-width: 900px; }
.fe-tabbody { height: 300px; overflow: auto; }
@media (max-width: 940px){ .modal-employe { max-width: 96vw; } }
@media (max-height: 720px){ .fe-tabbody { height: 240px; } }

/* ===== Bouton primaire bleu Easytech ===== */
.btn-easytech-blue { background:#1f6fb2; color:#fff; border:1px solid #1f6fb2; font-weight:600; }
.btn-easytech-blue:hover, .btn-easytech-blue:focus { background:#175d9c; color:#fff; border-color:#175d9c; }

/* ================= Portail salarié ================= */
.portail-shell { min-height:100vh; background:#eef2f6; font-family:'Inter',system-ui,sans-serif; }
.portail-top { display:flex; align-items:center; gap:16px; padding:12px 24px; background:linear-gradient(100deg,#175d9c 0%,#1f6fb2 55%,#2a80c4 100%); position:sticky; top:0; z-index:10; box-shadow:0 8px 24px -14px rgba(15,40,70,.7); border-bottom:3px solid #F49A47; }
.portail-brand { display:flex; align-items:center; gap:11px; font-weight:700; color:#fff; white-space:nowrap; font-size:15.5px; letter-spacing:-.01em; }
.portail-brand .brand-mark { width:36px; height:36px; border-radius:10px; background:rgba(255,255,255,.16); backdrop-filter:blur(4px); display:inline-flex; align-items:center; justify-content:center; box-shadow:inset 0 0 0 1px rgba(255,255,255,.25); }
.portail-brand .brand-mark i { color:#F49A47; font-size:19px; }
.portail-brand .brand-sub { color:rgba(255,255,255,.75); font-weight:500; font-size:12.5px; }
.portail-nav { display:flex; gap:4px; flex-grow:1; flex-wrap:wrap; }
.portail-nav a { padding:8px 14px; border-radius:9px; color:rgba(255,255,255,.85); text-decoration:none; font-weight:600; font-size:14px; position:relative; transition:background .15s,color .15s; }
.portail-nav a:hover { background:rgba(255,255,255,.16); color:#fff; }
.portail-nav a.actif { background:#fff; color:#175d9c; box-shadow:0 6px 16px -8px rgba(15,40,70,.6); }
.portail-nav a.actif::after { content:""; position:absolute; left:14px; right:14px; bottom:-1px; height:2.5px; background:#F49A47; border-radius:2px; }
.portail-user { display:flex; align-items:center; color:#fff; font-size:14px; }
.portail-user .btn-outline-secondary { color:#fff; border-color:rgba(255,255,255,.5); }
.portail-user .btn-outline-secondary:hover { background:rgba(255,255,255,.16); color:#fff; border-color:#fff; }
.portail-sep { width:1px; height:22px; background:rgba(255,255,255,.28); margin:0 4px; align-self:center; }
.portail-body { max-width:960px; margin:0 auto; padding:24px 16px 44px; }
.portail-page { }
.portail-h1 { font-size:22px; font-weight:800; color:#1f2937; letter-spacing:-.01em; position:relative; padding-bottom:8px; }
.portail-h1::after { content:""; position:absolute; left:0; bottom:0; width:46px; height:3px; background:#F49A47; border-radius:2px; }
.portail-h2 { font-size:15px; font-weight:700; color:#1f6fb2; margin-bottom:10px; text-transform:uppercase; letter-spacing:.03em; }
.portail-block { background:#fff; border:1px solid #e6e9f0; border-radius:14px; padding:18px 20px; margin-top:16px; box-shadow:0 10px 30px -22px rgba(30,41,59,.4); }
.portail-cards { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:14px; margin-top:14px; }
.portail-tile { display:flex; gap:14px; align-items:center; background:#fff; border:1px solid #e6e9f0; border-radius:14px; padding:16px 18px; text-decoration:none; color:inherit; transition:transform .12s,box-shadow .15s,border-color .15s; position:relative; overflow:hidden; }
.portail-tile::before { content:""; position:absolute; left:0; top:0; bottom:0; width:3px; background:#F49A47; transform:scaleY(0); transform-origin:top; transition:transform .15s; }
.portail-tile:hover { box-shadow:0 14px 30px -16px rgba(31,111,178,.4); transform:translateY(-2px); border-color:#cfe0ef; }
.portail-tile:hover::before { transform:scaleY(1); }
.portail-tile .t-ico { width:48px; height:48px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:1.35rem; flex-shrink:0; background:rgba(244,154,71,.15); color:#c9772e; }
.portail-tile .t-title { font-weight:700; color:#1f2937; }
.portail-tile .t-sub { font-size:13px; color:#8891a0; }

/* écrans auth portail */
.portail-auth { min-height:100vh; display:flex; align-items:center; justify-content:center; padding:24px; background:linear-gradient(135deg,#1f6fb2 0%,#175d9c 55%,#0f4a80 100%); }
.portail-card { width:100%; max-width:420px; background:#fff; border:none; border-top:4px solid #F49A47; border-radius:14px; padding:26px; box-shadow:0 24px 60px -20px rgba(15,40,70,.55); }
.portail-card-head { display:flex; gap:12px; align-items:flex-start; margin-bottom:18px; }
.portail-card-head > i { font-size:1.6rem; color:#1f6fb2; }
.portail-card-head h1 { font-size:19px; font-weight:700; margin:0; color:#1f2937; }
.portail-card-head p { margin:2px 0 0; font-size:13px; color:#8891a0; }

/* séparateur menu portail (avant section manager) */
.portail-sep { width:1px; align-self:center; height:22px; background:#e0e4ec; margin:0 6px; }

/* cloche notifications portail */
.portail-bell { position:relative; color:#5b6472; font-size:1.15rem; text-decoration:none; display:inline-flex; padding:4px; }
.portail-bell:hover { color:#1f6fb2; }
.portail-bell-badge { position:absolute; top:-2px; right:-4px; background:#dc3545; color:#fff; font-size:10px; font-weight:700; line-height:1; padding:2px 4px; border-radius:9px; }
/* lignes notifications */
.notif-row { display:flex; align-items:center; gap:12px; padding:12px 16px; border-bottom:1px solid #eef0f4; cursor:pointer; }
.notif-row:last-child { border-bottom:none; }
.notif-row:hover { background:#f7f9fc; }
.notif-row.non-lue { background:rgba(31,111,178,.05); }
.notif-dot { width:9px; height:9px; border-radius:50%; background:#1f6fb2; flex-shrink:0; }
.notif-dot.lu { background:#cdd4de; }
