/* ===== TOASTS ===== */
.toast-container { position: fixed; top: 18px; right: 18px; z-index: 3000; display: flex; flex-direction: column; gap: 10px; }
.toast {
  background: var(--primary); color: #fff; padding: 12px 18px; border-radius: 10px;
  box-shadow: var(--shadow-lg); font-size: .88rem; font-weight: 500;
  opacity: 0; transform: translateX(24px); transition: all .25s ease; max-width: 380px;
}
.toast.show { opacity: 1; transform: translateX(0); }
.toast-success { background: var(--success); }
.toast-warn { background: var(--warning); }
.toast-info { background: var(--primary); }

/* ===== HEADER ACTIONS + NOTIF DROPDOWN ===== */
.header-actions { position: relative; display: flex; align-items: center; gap: 4px; }
.notif-dropdown {
  position: absolute; top: 48px; right: 0; width: 340px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-xl);
  z-index: 200; display: none; overflow: hidden;
}
.notif-dropdown.open { display: block; animation: fadeIn .15s ease; }
.notif-head { padding: 14px 18px; font-weight: 700; border-bottom: 1px solid var(--border-light); display: flex; justify-content: space-between; align-items: center; }
.notif-head span { background: var(--accent); color: #fff; border-radius: 10px; padding: 1px 9px; font-size: .72rem; }
.notif-item { display: flex; gap: 10px; padding: 12px 18px; border-bottom: 1px solid var(--border-light); align-items: flex-start; }
.notif-item:last-of-type { border-bottom: none; }
.notif-text { font-size: .85rem; line-height: 1.4; }
.notif-time { font-size: .73rem; color: var(--text-muted); margin-top: 2px; }
.notif-foot { padding: 12px; text-align: center; color: var(--accent); font-weight: 600; font-size: .85rem; cursor: pointer; border-top: 1px solid var(--border-light); }
.notif-foot:hover { background: var(--bg); }

/* ===== CONFIGURAÇÕES ===== */
.cfg-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--border-light); gap: 16px; }
.cfg-row:last-child { border-bottom: none; }
.cfg-channels { display: flex; gap: 14px; flex-wrap: wrap; }
.cfg-chk { display: flex; align-items: center; gap: 6px; font-size: .82rem; white-space: nowrap; }
.cfg-chk input { accent-color: var(--accent); width: 15px; height: 15px; }
