/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 300px;
}

.toast {
  display: block;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: #fff;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast-success {
  background-color: #28a745;
}

.toast-error {
  background-color: #dc3545;
}

.toast-warning {
  background-color: #ffc107;
  color: #212529;
}

.toast-info {
  background-color: #17a2b8;
}

.toast .close {
  position: absolute;
  top: 5px;
  right: 10px;
  color: white;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  background: none;
  border: none;
}

.toast-warning .close {
  color: #212529;
}

.toast .close:hover {
  opacity: 0.8;
}