.live-toast-area {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(390px, calc(100vw - 32px));
}
.live-toast {
  background: #172033;
  color: #fff;
  border-radius: 13px;
  padding: 14px 16px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, .28);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  animation: toast-in .2s ease-out;
}
.live-toast strong, .live-toast span { display: block; }
.live-toast span { color: #d8e1f2; margin-top: 4px; line-height: 1.35; }
.live-toast a { color: #fff; margin-left: auto; white-space: nowrap; }
.notification-enabled { background: var(--success) !important; color: #fff !important; }
.notification-center { position: relative; }
.notification-center-toggle { white-space: nowrap; }
.button-icon { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.notification-total { min-width: 20px; height: 20px; padding: 0 6px; display: inline-grid; place-items: center; border-radius: 999px; background: #e04b4b; color: #fff; font-size: 11px; font-weight: 800; }
.notification-panel { position: absolute; top: calc(100% + 10px); right: 0; width: 370px; max-width: calc(100vw - 32px); background: #fff; border: 1px solid var(--line); border-radius: 15px; box-shadow: 0 22px 65px rgba(18, 31, 54, .2); padding: 8px; z-index: 80; }
.notification-panel[hidden] { display: none; }
.notification-panel-head { padding: 10px 11px 12px; border-bottom: 1px solid var(--line); }
.notification-panel-head strong,.notification-panel-head span { display: block; }
.notification-panel-head span { color: var(--muted); font-size: 11px; margin-top: 3px; }
.notification-panel>a { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 11px; border-radius: 9px; color: var(--text); }
.notification-panel>a:hover { background: #f4f7fb; }
.notification-panel>a strong { min-width: 28px; text-align: right; color: var(--primary); font-size: 15px; }
.notification-system { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 6px; padding: 10px 11px; background: #f6f8fc; border-radius: 10px; }
.notification-system>span { color: var(--muted); font-size: 11px; line-height: 1.35; }
.notification-system .btn { flex: none; }
.notification-system .notification-enabled { background: #e2f5ec !important; color: var(--success) !important; border-color: #b8e2cf; }
@keyframes toast-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@media(max-width:850px){.notification-panel{position:fixed;top:72px;left:16px;right:16px;width:auto}.notification-center-toggle span:not(.notification-total){display:none}}
