/* Custom Application Styles */
[data-theme="light"] {
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --text-main: #0f172a;
}

[data-theme="dark"] {
  --bg-main: #030712;
  --bg-card: #111827;
  --text-main: #f9fafb;
}

.toast {
  padding: 10px 16px;
  border-radius: 8px;
  background: #1e293b;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  font-size: 14px;
  animation: slideIn 0.2s ease-out;
}

@keyframes slideIn {
  from { transform: translateY(10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
