label.error {
  color: red;
}

/* Toast Container (Top-Right Positioning) */
#toastContainer {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1050;
}

.toast {
  min-width: 320px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.toast-header {
  font-weight: bold;
  display: flex;
  align-items: center;
  color: #060606;
  font-size: 1rem;
}

/* Success Toast Styling */
.toast-success {
  background-color: #28a745;
  color: #fff;
}

/* Error Toast Styling */
.toast-error {
  background-color: #dc3545;
  color: #fff;
}

/* Icon Styling */
.toast-icon {
  width: 30px;
  border: 1px solid #b6b7b9;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  margin-right: 10px;
  background-color: rgba(255, 255, 255, 0.8);
}

.toast-icon i {
  color: black;
  /* Black Icon */
}

.toast-body {
  font-size: 1rem;
  text-align: left;
  padding-left: 20px;
}
