/* Toast styles */
.toast-container {
  position: fixed;
  right: 16px;
  top: 88px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  min-width: 220px;
  max-width: 360px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(2,6,23,0.12);
  overflow: hidden;
}

.toast-header {
  padding: 8px 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.toast-body {
  padding: 10px 12px;
  font-size: 0.95rem;
}

.toast-success { border-left: 6px solid #198754; }
.toast-warning { border-left: 6px solid #ffc107; }
.toast-error { border-left: 6px solid #dc3545; }
.toast-info { border-left: 6px solid #0d6efd; }

.btn-close { background: transparent; border: none; font-size: 14px; }
