/* --- Toast Notification --- */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  min-width: 250px;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: slideIn 0.3s ease;
}

.toast.success { background-color: #28a745; } /* green */
.toast.error { background-color: #dc3545; }   /* red */
.toast.info { background-color: #17a2b8; }    /* blue */
.toast.warning { background-color: #ffc107; color: #333; } /* yellow */

.toast .close-btn {
  margin-left: 10px;
  cursor: pointer;
  font-size: 18px;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}