@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --black: #000000; --black-soft: #1A1A1A; --grey-dark: #3A3A3A;
  --grey-mid: #6B6B6B; --grey: #B4B4B4; --grey-light: #E0E0E0; --grey-bg: #F5F5F5;
  --white: #FFFFFF;
  /* Mapping fonctionnel */
  --blue: #000000; --blue-light: #F0F0F0; --blue-dark: #1A1A1A;
  --green: #3A3A3A; --green-light: #EBEBEB;
  --orange: #5A5A5A; --orange-light: #EFEFEF;
  --pink: #6B6B6B; --pink-light: #F2F2F2;
  --purple: #4A4A4A; --purple-light: #EEEEEE;
  --amber: #5A5A5A; --amber-light: #EEEEEE; --amber-dark: #2A2A2A;
  --red: #1A1A1A; --red-light: #F0F0F0;
  --bg: #F5F5F5; --surface: #FFFFFF; --border: #E0E0E0;
  --text: #000000; --text-muted: #6B6B6B; --text-light: #B4B4B4;
  --radius: 6px; --radius-lg: 10px; --shadow: 0 1px 3px rgba(0,0,0,.06);
  --font: 'Lora', Georgia, serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font); font-size: 14px; background: var(--bg); color: var(--text); height: 100vh; display: flex; overflow: hidden; }

/* ── SIDEBAR noire ── */
.sidebar { width: 240px; background: #000000; border-right: none; display: flex; flex-direction: column; flex-shrink: 0; }
.logo { padding: 20px 18px 18px; border-bottom: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; gap: 10px; }
.logo img { max-width: 140px; height: auto; }
.logo-text { font-size: 15px; font-weight: 700; color: #FFFFFF; letter-spacing: .12em; text-transform: uppercase; display: none; }
.logo-sub { font-size: 9px; color: #B4B4B4; letter-spacing: .2em; text-transform: uppercase; margin-top: 1px; display: none; }
.nav-section { padding: 14px 8px 4px; }
.nav-label { font-size: 9px; font-weight: 600; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .12em; padding: 0 10px; margin-bottom: 4px; }
.nav-item { display: flex; align-items: center; gap: 9px; padding: 9px 10px; border-radius: var(--radius); cursor: pointer; color: rgba(255,255,255,.55); font-size: 12px; letter-spacing: .02em; transition: all .15s; }
.nav-item:hover { background: rgba(255,255,255,.07); color: rgba(255,255,255,.9); }
.nav-item.active { background: rgba(255,255,255,.12); color: #FFFFFF; font-weight: 500; }
.nav-item i { font-size: 13px; width: 15px; text-align: center; }
.badge { margin-left: auto; background: #FFFFFF; color: #000000; font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 10px; }
.sidebar-projects { flex: 1; overflow-y: auto; padding: 4px 8px 12px; }
.sidebar-projects::-webkit-scrollbar { width: 3px; }
.sidebar-projects::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 2px; }
.project-item { padding: 8px 10px; border-radius: var(--radius); cursor: pointer; margin-bottom: 1px; transition: background .1s; }
.project-item:hover { background: rgba(255,255,255,.06); }
.project-item.active { background: rgba(255,255,255,.12); }
.project-item-name { font-size: 12px; font-weight: 500; color: rgba(255,255,255,.85); margin-bottom: 2px; display: flex; align-items: center; gap: 6px; letter-spacing: .01em; }
.project-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.project-item-sub { font-size: 11px; color: rgba(255,255,255,.35); padding-left: 12px; }

/* ── MAIN ── */
.main { flex: 1; display: flex; flex-direction: column; overflow: hidden; min-width: 0; }
.topbar { background: var(--surface); border-bottom: 1px solid var(--border); padding: 12px 24px; display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.topbar-title { font-size: 16px; font-weight: 600; color: var(--text); flex: 1; letter-spacing: .01em; }
.topbar-sub { font-size: 12px; color: var(--text-muted); font-weight: 400; margin-left: 8px; font-style: italic; }

/* ── BOUTONS ── */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); cursor: pointer; font-size: 12px; font-family: var(--font); color: var(--text); transition: all .15s; white-space: nowrap; letter-spacing: .02em; }
.btn:hover { background: var(--grey-bg); border-color: #C8C8C8; }
.btn i { font-size: 12px; }
.btn-primary { background: #000000; color: #FFFFFF; border-color: #000000; }
.btn-primary:hover { background: #2A2A2A; border-color: #2A2A2A; }
.btn-danger { background: var(--grey-bg); color: var(--grey-dark); border-color: var(--grey-light); }
.btn-danger:hover { background: #EBEBEB; }
.btn-sm { padding: 5px 9px; font-size: 11px; }
.btn-icon { padding: 6px 8px; }

/* ── ALERT BAR ── */
.alert-bar { background: #1A1A1A; border-bottom: 2px solid #000; padding: 9px 24px; display: flex; align-items: center; gap: 10px; font-size: 12px; color: #FFFFFF; flex-shrink: 0; cursor: pointer; letter-spacing: .02em; }
.alert-bar:hover { background: #000000; }
.alert-bar i { color: var(--grey); }
.alert-bar .close { margin-left: auto; opacity: .6; }

/* ── CONTENU ── */
.content { flex: 1; overflow: auto; padding: 20px 24px; }
.content::-webkit-scrollbar { width: 5px; }
.content::-webkit-scrollbar-thumb { background: var(--grey-light); border-radius: 3px; }

/* ── ONGLETS ── */
.tabs { display: flex; gap: 0; margin-bottom: 18px; border-bottom: 1px solid var(--border); }
.tab { padding: 8px 18px; cursor: pointer; font-size: 12px; color: var(--text-muted); transition: all .15s; letter-spacing: .04em; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.tab:hover { color: var(--text); }
.tab.active { color: var(--black); font-weight: 600; border-bottom-color: #000000; }

/* ── STATS ── */
.stats-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-bottom: 22px; }
.stat-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px 18px; }
.stat-label { font-size: 10px; color: var(--text-muted); margin-bottom: 8px; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; }
.stat-value { font-size: 28px; font-weight: 700; color: var(--text); line-height: 1; }
.stat-sub { font-size: 11px; color: var(--text-light); margin-top: 4px; font-style: italic; }

/* ── GANTT ── */
.gantt-wrap { background: var(--surface); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; }
.gantt-header { display: flex; background: #000000; }
.gantt-label-col { width: 220px; flex-shrink: 0; padding: 10px 14px; font-size: 10px; font-weight: 600; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; border-right: 1px solid rgba(255,255,255,.1); }
.gantt-months { flex: 1; display: grid; grid-template-columns: repeat(6, 1fr); }
.gantt-month { padding: 10px 6px; font-size: 10px; font-weight: 600; color: rgba(255,255,255,.6); text-align: center; border-right: 1px solid rgba(255,255,255,.1); letter-spacing: .05em; }
.gantt-month:last-child { border-right: none; }
.gantt-row { display: flex; border-bottom: 1px solid var(--border); align-items: stretch; min-height: 58px; transition: background .1s; }
.gantt-row:last-child { border-bottom: none; }
.gantt-row:hover { background: #FAFAFA; }
.gantt-project-cell { width: 220px; flex-shrink: 0; padding: 10px 14px; border-right: 1px solid var(--border); display: flex; flex-direction: column; justify-content: center; cursor: pointer; }
.project-name { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 3px; letter-spacing: .01em; }
.project-meta { font-size: 11px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; font-style: italic; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.gantt-timeline { flex: 1; position: relative; display: grid; grid-template-columns: repeat(6, 1fr); }
.gantt-col-bg { border-right: 1px solid var(--border); }
.gantt-col-bg:last-child { border-right: none; }
.gantt-bar { height: 30px; border-radius: 4px; display: flex; align-items: center; padding: 0 10px; font-size: 11px; font-weight: 600; color: #fff; position: absolute; top: 50%; transform: translateY(-50%); cursor: pointer; transition: filter .15s; white-space: nowrap; overflow: hidden; gap: 6px; letter-spacing: .03em; }
.gantt-bar:hover { filter: brightness(1.2); }
.gantt-empty { padding: 40px; text-align: center; color: var(--text-muted); font-size: 13px; font-style: italic; }

/* ── LÉGENDE ── */
.legend { margin-top: 12px; display: flex; gap: 20px; flex-wrap: wrap; font-size: 11px; color: var(--text-muted); align-items: center; }
.legend-item { display: flex; align-items: center; gap: 5px; }
.legend-dot { width: 10px; height: 10px; border-radius: 2px; }

/* ── TABLE (utilisée par Projets / Vivier / Équipe événement) ── */
.table-wrap { background: var(--surface); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; }
table { width: 100%; border-collapse: collapse; font-size: 13px; }
thead tr { background: #000000; }
th { padding: 10px 14px; text-align: left; font-weight: 600; font-size: 10px; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .08em; border-bottom: none; white-space: nowrap; font-family: var(--font); }
td { padding: 11px 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tbody tr:hover { background: #FAFAFA; }
.date-group-row td { background: #F0F0F0; font-size: 10px; font-weight: 700; color: var(--grey-dark); text-transform: uppercase; letter-spacing: .1em; padding: 7px 14px; }
.empty-state { padding: 50px 20px; text-align: center; color: var(--text-muted); font-size: 13px; font-style: italic; }
.empty-state i { font-size: 26px; display: block; margin-bottom: 10px; color: var(--grey-light); }
.small { font-size: 11px; }
.text-muted { color: var(--text-muted); }

/* ── OUTILS RENDEZ-VOUS (recherche / filtres / groupement) ── */
.rdv-toolbar { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 12px; }
.rdv-toolbar select { padding: 7px 10px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 12px; font-family: var(--font); background: var(--surface); color: var(--text); }
.rdv-toolbar select:focus { outline: none; border-color: #000; }
.rdv-checkbox-label { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-muted); cursor: pointer; white-space: nowrap; }
.rdv-checkbox-label input { cursor: pointer; }
.rdv-warn-count { background: #000; color: #fff; font-size: 10px; font-weight: 700; padding: 1px 6px; border-radius: 10px; line-height: 1.5; }
.rdv-groupby { display: flex; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.rdv-groupby-btn { padding: 7px 12px; font-size: 11px; border: none; border-left: 1px solid var(--border); background: var(--surface); color: var(--text-muted); cursor: pointer; letter-spacing: .02em; font-family: var(--font); }
.rdv-groupby-btn:first-child { border-left: none; }
.rdv-groupby-btn.active { background: #000; color: #fff; }
.rdv-count-label { margin-left: auto; font-size: 12px; color: var(--text-muted); white-space: nowrap; }
.rdv-daychips-row { display: flex; gap: 7px; overflow-x: auto; padding-bottom: 6px; margin-bottom: 12px; scrollbar-width: thin; }
.rdv-daychip { flex-shrink: 0; padding: 6px 11px; border-radius: 7px; border: 1px solid var(--border); background: var(--surface); color: var(--text-muted); font-size: 11px; cursor: pointer; display: flex; align-items: center; gap: 6px; font-family: var(--font); transition: all .15s; }
.rdv-daychip:hover { border-color: #000; color: var(--text); }
.rdv-daychip.active { background: #000; color: #fff; border-color: #000; }
.rdv-daychip-count { font-size: 9px; opacity: .85; background: var(--grey-bg); color: var(--text-muted); border-radius: 8px; padding: 1px 5px; }
.rdv-daychip.active .rdv-daychip-count { background: rgba(255,255,255,.2); color: #fff; }

/* ── AGENDA COMPACT (liste des rendez-vous) ── */
.rdv-agenda-wrap { background: var(--surface); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; }
.rdv-agenda-scroll { max-height: 68vh; overflow-y: auto; }
.rdv-day-header { position: sticky; top: 0; z-index: 2; background: #F0F0F0; font-size: 10px; font-weight: 700; color: var(--grey-dark); text-transform: uppercase; letter-spacing: .1em; padding: 7px 14px; border-bottom: 1px solid var(--border); }
.rdv-day-header-count { margin-left: 8px; opacity: .55; font-weight: 400; text-transform: none; letter-spacing: 0; }
.rdv-row { display: flex; align-items: center; gap: 12px; padding: 7px 14px 7px 11px; border-left: 3px solid transparent; border-bottom: 1px solid var(--border); cursor: pointer; transition: background .1s; font-size: 13px; }
.rdv-row:hover { background: #FAFAFA; }
.rdv-row:last-child { border-bottom: none; }
.rdv-row-lead { width: 64px; flex-shrink: 0; font-weight: 600; line-height: 1.3; white-space: nowrap; }
.rdv-row-time-sub { font-size: 10px; font-weight: 400; color: var(--text-muted); }
.rdv-row-pole { flex-shrink: 0; width: 40px; text-align: center; font-size: 9px; font-weight: 700; padding: 2px 0; border-radius: 3px; letter-spacing: .04em; }
.rdv-row-pole-empty { background: transparent; }
.rdv-row-main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.rdv-row-client { font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rdv-row-sub { font-size: 11px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rdv-row-artistes { flex-shrink: 0; display: flex; align-items: center; gap: 4px; width: 118px; }
.rdv-row-artistes .add-artiste-btn { width: 20px; height: 20px; font-size: 9px; flex-shrink: 0; }
.rdv-noart-tag { font-size: 9px; color: #B71C1C; text-transform: uppercase; letter-spacing: .04em; font-weight: 600; white-space: nowrap; }
.rdv-row-actions { flex-shrink: 0; display: flex; gap: 4px; opacity: 0; transition: opacity .1s; }
.rdv-row:hover .rdv-row-actions { opacity: 1; }
.rdv-row-checkbox { flex-shrink: 0; width: 14px; height: 14px; cursor: pointer; accent-color: #000; }
.rdv-row.selected { background: #F0F0F0; }
.rdv-row.selected:hover { background: #E8E8E8; }
.rdv-bulk-bar { display: none; align-items: center; gap: 10px; background: #000; color: #fff; border-radius: var(--radius-lg); padding: 9px 16px; margin-bottom: 12px; font-size: 12px; }
.rdv-bulk-bar select { padding: 6px 10px; border-radius: 6px; border: none; font-size: 12px; font-family: var(--font); }
.rdv-bulk-count { font-weight: 600; margin-right: 4px; white-space: nowrap; }
.rdv-bulk-cancel { margin-left: auto; background: transparent; border: 1px solid rgba(255,255,255,.3); color: #fff; }
.rdv-bulk-cancel:hover { background: rgba(255,255,255,.1); }

/* ── BADGES STATUT ── */
.status-badge { display: inline-flex; align-items: center; font-size: 10px; font-weight: 600; padding: 3px 9px; border-radius: 3px; gap: 4px; white-space: nowrap; text-transform: uppercase; letter-spacing: .06em; }
.st-en_cours   { background: #000000; color: #FFFFFF; }
.st-planifie   { background: #3A3A3A; color: #FFFFFF; }
.st-alerte     { background: #B4B4B4; color: #000000; }
.st-brouillon  { background: #F0F0F0; color: #6B6B6B; }
.st-ok         { background: #F0F0F0; color: #3A3A3A; }
.st-confirmée  { background: #000000; color: #FFFFFF; }
.st-en_attente { background: #EFEFEF; color: #6B6B6B; }
.st-annule    { background: #E8E8E8; color: #6B6B6B; text-decoration: line-through; }

/* ── BADGES PÔLE (MUA/HAIR/MUAH) ── */
.pole-mua  { background: #000000; color: #FFFFFF; }
.pole-hair { background: #6B6B6B; color: #FFFFFF; }
.pole-muah { background: #B4B4B4; color: #FFFFFF; }

/* ── BADGES DOCS ── */
.docs-ok                          { background: #F0F0F0; color: #3A3A3A; }
.docs-manquant, .docs-en_attente  { background: #E8E8E8; color: #6B6B6B; }

.actions { display: flex; gap: 5px; }

/* ── AVATARS ── */
.avatars { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.avatar { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; color: #fff; flex-shrink: 0; }
.avatar-chip { display: inline-flex; align-items: center; gap: 5px; background: var(--grey-bg); border: 1px solid var(--border); border-radius: 20px; padding: 2px 8px 2px 2px; font-size: 11px; }
.avatar-chip .x { cursor: pointer; color: var(--text-light); font-size: 10px; }
.avatar-chip .x:hover { color: #000; }
.tags-chips { display: flex; flex-wrap: wrap; gap: 6px; min-height: 26px; padding: 6px 0; }
.tag-chip { display: inline-flex; align-items: center; gap: 6px; background: #000; color: #fff; border-radius: 20px; padding: 3px 10px; font-size: 11px; font-weight: 500; }
.tag-chip .x { cursor: pointer; opacity: .6; font-size: 10px; }
.tag-chip .x:hover { opacity: 1; }
.tag-chip-readonly { background: var(--grey-bg); color: var(--text); border: 1px solid var(--border); }
.tags-row { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 4px; }
.add-artiste-btn { width: 24px; height: 24px; border-radius: 50%; border: 1px dashed var(--grey-light); background: none; color: var(--text-light); cursor: pointer; font-size: 12px; display: flex; align-items: center; justify-content: center; }
.add-artiste-btn:hover { border-color: #000; color: #000; }

/* ── FORMULAIRES ── */
.form-group { margin-bottom: 12px; }
.form-group label { display: block; font-size: 11px; font-weight: 600; color: var(--text-muted); margin-bottom: 5px; text-transform: uppercase; letter-spacing: .06em; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 8px 11px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 13px; font-family: var(--font); color: var(--text); background: var(--surface); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #000; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }

/* ── MODAL ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); display: none; align-items: center; justify-content: center; z-index: 100; padding: 20px; }
.modal-overlay.show { display: flex; }
.modal { background: var(--surface); border-radius: var(--radius-lg); width: 100%; max-width: 560px; max-height: 88vh; display: flex; flex-direction: column; box-shadow: 0 24px 60px rgba(0,0,0,.25); }
.modal.modal-wide { max-width: 760px; }
.modal-header { padding: 16px 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; background: #000; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.modal-title { font-size: 14px; font-weight: 600; flex: 1; color: #FFF; letter-spacing: .04em; }
.modal-close { cursor: pointer; color: rgba(255,255,255,.6); font-size: 16px; padding: 4px; }
.modal-close:hover { color: #FFF; }
.modal-body { padding: 20px; overflow-y: auto; }
.modal-footer { padding: 14px 20px; border-top: 1px solid var(--border); display: flex; justify-content: flex-end; gap: 8px; }

/* ── IMPORT WIZARD ── */
.dropzone { border: 2px dashed var(--grey-light); border-radius: var(--radius-lg); padding: 32px; text-align: center; color: var(--text-muted); cursor: pointer; transition: all .15s; font-style: italic; }
.dropzone:hover { border-color: #000; background: var(--grey-bg); }
.dropzone i { font-size: 28px; color: var(--grey); margin-bottom: 10px; display: block; }
.mapping-table { width: 100%; font-size: 12px; }
.mapping-table td { padding: 6px 4px; border: none; }
.mapping-table select { width: 100%; padding: 5px 6px; font-size: 12px; border: 1px solid var(--border); border-radius: var(--radius); font-family: var(--font); }
.preview-scroll { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 16px; max-height: 160px; }
.preview-scroll table { font-size: 11px; white-space: nowrap; }
.import-step { display: none; }
.import-step.active { display: block; }
.step-pill { display: inline-flex; gap: 6px; align-items: center; font-size: 11px; color: var(--text-muted); margin-bottom: 14px; }
.step-pill span { width: 18px; height: 18px; border-radius: 50%; background: var(--grey-bg); display: inline-flex; align-items: center; justify-content: center; font-weight: 700; }
.step-pill span.active { background: #000; color: #fff; }

/* ── TOAST ── */
.toast-wrap { position: fixed; bottom: 20px; right: 20px; z-index: 200; display: flex; flex-direction: column; gap: 8px; }
.toast { background: #000000; color: #fff; padding: 10px 16px; border-radius: var(--radius); font-size: 12px; box-shadow: 0 8px 24px rgba(0,0,0,.3); display: flex; align-items: center; gap: 8px; animation: slideIn .2s ease; letter-spacing: .02em; }
.toast.success i { color: #B4B4B4; }
.toast.error i { color: #888; }
@keyframes slideIn { from { opacity:0; transform: translateY(8px);} to {opacity:1; transform: translateY(0);} }

/* ── USER PROFILE BLOCK ── */
.user-profile-block {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}
.user-avatar img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.2);
}
.user-info {
    flex: 1;
    overflow: hidden;
}
.user-name {
    font-size: 13px;
    font-weight: 600;
    color: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.user-role {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.user-actions {
    display: flex;
    gap: 10px;
}
.user-actions a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    transition: color 0.2s;
}
.user-actions a:hover {
    color: #FFFFFF;
}


/* ── TOAST NOTIFICATION ── */
#toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}
.toast {
    background: var(--surface);
    color: var(--text);
    padding: 15px 25px;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 4px solid #1D9E75;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}
.toast.show {
    opacity: 1;
    transform: translateY(0);
}
.toast-error {
    border-left-color: #C53030;
}
