/* Custom SweetAlert2 styles for COT application */

/* Custom popup styles */
.swal-althea-popup {
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  font-family: 'Inter', sans-serif;
}

.swal-althea-title {
  font-weight: 600;
  font-size: 1.125rem;
  color: #1f2937;
}

.swal-althea-content {
  color: #4b5563;
  font-size: 0.875rem;
}

.swal-althea-confirm {
  background-color: #3E4A5C !important;
  border-color: #3E4A5C !important;
  border-radius: 0.375rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.swal-althea-confirm:hover {
  background-color: #343A46 !important;
  border-color: #343A46 !important;
}

.swal-althea-cancel {
  background-color: #dc2626 !important;
  border-color: #dc2626 !important;
  border-radius: 0.375rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.swal-althea-cancel:hover {
  background-color: #b91c1c !important;
  border-color: #b91c1c !important;
}

/* Toast styles for top-right position */
.swal2-toast {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-radius: 0.5rem;
  min-width: 300px;
}

.swal2-toast .swal2-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0;
}

.swal2-toast .swal2-content {
  font-size: 0.875rem;
  margin: 0;
}

/* Success toast styles */
.swal2-toast.swal2-icon-success {
  background-color: #E6F7F6;
  border-left: 4px solid #00A693;
}

.swal2-toast.swal2-icon-success .swal2-title,
.swal2-toast.swal2-icon-success .swal2-content {
  color: #006459;
}

.swal2-toast.swal2-icon-success .swal2-icon.swal2-success {
  border-color: #00A693;
}

.swal2-toast.swal2-icon-success .swal2-success-ring {
  border-color: #00A693;
}

.swal2-toast.swal2-icon-success .swal2-success-fix {
  background-color: #00A693;
}

.swal2-toast.swal2-icon-success [class^="swal2-success-line"] {
  background-color: #00A693;
}

/* Error toast styles */
.swal2-toast.swal2-icon-error {
  background-color: #fef2f2;
  border-left: 4px solid #dc2626;
}

.swal2-toast.swal2-icon-error .swal2-title,
.swal2-toast.swal2-icon-error .swal2-content {
  color: #b91c1c;
}

.swal2-toast.swal2-icon-error .swal2-icon.swal2-error {
  border-color: #dc2626;
  color: #dc2626;
}

/* Warning toast styles */
.swal2-toast.swal2-icon-warning {
  background-color: #fffbeb;
  border-left: 4px solid #f59e0b;
}

.swal2-toast.swal2-icon-warning .swal2-title,
.swal2-toast.swal2-icon-warning .swal2-content {
  color: #d97706;
}

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

/* Timer progress bar */
.swal2-timer-progress-bar {
  background-color: rgba(0, 0, 0, 0.2);
}

/* Mobile responsiveness */
@media (max-width: 640px) {
  .swal2-toast {
    min-width: 280px;
    margin: 0.5rem;
  }

  .swal-althea-popup {
    margin: 1rem;
    width: calc(100% - 2rem);
  }
}