/* Custom Toast Notification Styles */

/* Override default toast colors to match site theme */
.Vue-Toastification__toast--success {
  background-color: #28a745 !important;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.Vue-Toastification__toast--error {
  background-color: #dc3545 !important;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.Vue-Toastification__toast--info {
  background-color: #17a2b8 !important;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.Vue-Toastification__toast--warning {
  background-color: #ffc107 !important;
  color: #212529 !important;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Toast container positioning */
.Vue-Toastification__container {
  z-index: 99999 !important;
  padding: 1rem;
}

/* Toast body styling */
.Vue-Toastification__toast-body {
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
  padding: 0.5rem 0;
}

/* Progress bar styling */
.Vue-Toastification__progress-bar {
  background-color: rgba(255, 255, 255, 0.7) !important;
}

/* Close button styling */
.Vue-Toastification__close-button {
  opacity: 0.7;
  font-size: 20px;
}

.Vue-Toastification__close-button:hover {
  opacity: 1;
}

/* Icon styling */
.Vue-Toastification__icon {
  margin-right: 10px;
}

/* Mobile responsiveness */
@media only screen and (max-width: 600px) {
  .Vue-Toastification__container {
    padding: 0.5rem;
  }

  .Vue-Toastification__toast {
    margin-bottom: 0.5rem;
    border-radius: 6px;
  }

  .Vue-Toastification__toast-body {
    font-size: 13px;
  }
}
