/* * {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
} */

/* Toast Custom Styles */
.swal2-toast {
  background: #2d2d2d !important;
  border: 1px solid #404040 !important;
  border-radius: 12px !important;
  color: #e4e4e7 !important;
  font-family: "Inter", system-ui, sans-serif !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: blur(10px) !important;
  min-height: 60px !important;
  z-index: 999999 !important;
}

.swal2-container.swal2-top-end,
.swal2-container.swal2-top-right {
  z-index: 2147483647 !important;
}

.swal2-toast .swal2-title {
  color: #e4e4e7 !important;
  font-weight: 500 !important;
  font-size: 0.95rem !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}

.swal2-toast .swal2-html-container {
  color: #a1a1aa !important;
  font-weight: 300 !important;
  font-size: 0.85rem !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}

/* Toast Icons */
.swal2-toast .swal2-icon {
  width: 24px !important;
  height: 24px !important;
  margin: 0 8px 0 0 !important;
  border: none !important;
}

.swal2-toast .swal2-icon.swal2-success {
  border-color: #10b981 !important;
}

.swal2-toast .swal2-icon.swal2-success [class^="swal2-success-line"] {
  background-color: #10b981 !important;
}

.swal2-toast .swal2-icon.swal2-error [class^="swal2-x-mark-line"] {
  background-color: #ef4444 !important;
}

.swal2-toast .swal2-icon.swal2-warning {
  border-color: #f59e0b !important;
  color: #f59e0b !important;
}

.swal2-toast .swal2-icon.swal2-info {
  border-color: #3b82f6 !important;
  color: #3b82f6 !important;
}

/* Toast Progress Bar - Base */
.swal2-toast .swal2-timer-progress-bar {
  height: 3px !important;
}

/* Success Progress Bar */
.toast-success .swal2-timer-progress-bar {
  background: linear-gradient(90deg, #059669, #10b981) !important;
}

/* Error Progress Bar */
.toast-error .swal2-timer-progress-bar {
  background: linear-gradient(90deg, #dc2626, #ef4444) !important;
}

/* Warning Progress Bar */
.toast-warning .swal2-timer-progress-bar {
  background: linear-gradient(90deg, #d97706, #f59e0b) !important;
}

/* Info Progress Bar */
.toast-info .swal2-timer-progress-bar {
  background: linear-gradient(90deg, #2563eb, #3b82f6) !important;
}

/* Custom Progress Bar */
.toast-custom .swal2-timer-progress-bar {
  background: linear-gradient(90deg, #ff3b3b, #ff6b6b) !important;
}

/* Toast Close Button */
.swal2-toast .swal2-close {
  color: #a1a1aa !important;
  font-size: 1.2rem !important;
  width: 24px !important;
  height: 24px !important;
  line-height: 24px !important;
  right: 8px !important;
  top: 8px !important;
}

.swal2-toast .swal2-close:hover {
  color: #ff6b6b !important;
  background: rgba(255, 107, 107, 0.1) !important;
  border-radius: 4px !important;
}

/* Success Toast Variant */
.toast-success {
  border-left: 4px solid #10b981 !important;
}

/* Error Toast Variant */
.toast-error {
  border-left: 4px solid #ef4444 !important;
}

/* Warning Toast Variant */
.toast-warning {
  border-left: 4px solid #f59e0b !important;
}

/* Info Toast Variant */
.toast-info {
  border-left: 4px solid #3b82f6 !important;
}

/* Custom Toast Variant */
.toast-custom {
  border-left: 4px solid #ff6b6b !important;
  background: linear-gradient(135deg, #2d2d2d, #353535) !important;
}

/* Button Styles */
.btn-elegant {
  background: linear-gradient(135deg, #ff3b3b, #ff6b6b);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-elegant:hover {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  transform: translateY(-1px);
}

.btn-elegant:active {
  animation: pulse-button 0.3s ease-out;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #404040;
  border-radius: 8px;
  color: #e4e4e7;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: #ff6b6b;
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.05);
}

.btn-success {
  background: linear-gradient(135deg, #059669, #10b981);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-success:hover {
  background: linear-gradient(135deg, #10b981, #34d399);
  transform: translateY(-1px);
}

.btn-error {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-error:hover {
  background: linear-gradient(135deg, #ef4444, #f87171);
  transform: translateY(-1px);
}

.btn-warning {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-warning:hover {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  transform: translateY(-1px);
}

.btn-info {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-info:hover {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  transform: translateY(-1px);
}

.card-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.1);
}

.position-demo {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0.25rem;
  background: #404040;
  border-radius: 6px;
  color: #e4e4e7;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.position-demo:hover {
  background: #ff6b6b;
  color: white;
}
