/* ==================== TOAST NOTIFICATIONS ==================== */
.toast-container {
  position: fixed;
  top: 60px;
  right: 20px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.toast {
  pointer-events: all;
  background: var(--toast-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  min-width: 280px;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  animation: toastIn 0.3s ease;
  transition: opacity 0.3s, transform 0.3s;
}
.toast.removing { opacity: 0; transform: translateX(100px); }
.toast--success { border-left: 3px solid var(--toast-success); }
.toast--error { border-left: 3px solid var(--toast-error); }
.toast--info { border-left: 3px solid var(--toast-info); }
.toast--warning { border-left: 3px solid var(--toast-warning); }
.toast__icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.toast__content { flex: 1; }
.toast__title { font-size: 13px; font-weight: 600; color: #fff; }
.toast__message { font-size: 12px; color: var(--text-secondary); margin-top: 2px; }
.toast__close { background: none; border: none; color: var(--text-dim); cursor: pointer; font-size: 14px; padding: 0; margin-left: 8px; }
.toast__close:hover { color: var(--text); }
@keyframes toastIn { from { opacity: 0; transform: translateX(100px); } to { opacity: 1; transform: translateX(0); } }

/* ==================== CONFIRM/PROMPT MODALS ==================== */
.modal-overlay { position: fixed; inset: 0; background: var(--modal-overlay); z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 20px; box-sizing: border-box; }
.confirm-modal-box { background: var(--modal-bg); border: 1px solid var(--border); border-radius: var(--modal-radius); padding: 24px 28px; max-width: 440px; width: 100%; box-shadow: var(--shadow-lg); }
.confirm-modal-msg { color: var(--text); font-size: 15px; line-height: 1.55; margin: 0 0 20px; white-space: pre-line; }
.confirm-modal-actions { display: flex; gap: 10px; justify-content: flex-end; }
.confirm-modal-input { display: block; width: 100%; box-sizing: border-box; background: var(--bg-hover); border: 1px solid var(--border); border-radius: 6px; padding: 8px 12px; color: var(--text); font-size: 14px; outline: none; margin-bottom: 12px; font-family: inherit; }
.confirm-modal-input:focus { border-color: var(--accent); }
textarea.confirm-modal-input { resize: vertical; min-height: 80px; }
.btn-danger { background: var(--red); color: #fff; border: none; padding: 8px 20px; border-radius: 20px; font-weight: 700; cursor: pointer; font-size: 13px; transition: background 0.15s; }
.btn-danger:hover { background: #dc2626; }

/* ==================== PUSH NOTIFICATION PROMPT ==================== */
.push-prompt {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1200;
  background: var(--bg-card, #1e2f3a);
  border: 1px solid var(--border, #2a3f4d);
  border-radius: 14px;
  padding: 16px 20px;
  min-width: 320px;
  max-width: 440px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: pushPromptIn 0.3s ease;
}
@keyframes pushPromptIn {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.push-prompt__content { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.push-prompt__icon { font-size: 22px; }
.push-prompt__text { color: var(--text, #e8ecee); font-size: 14px; line-height: 1.4; }
.push-prompt__actions { display: flex; gap: 8px; justify-content: flex-end; }
