.toast-container {
  z-index: 9999;
}
.custom-toast {
  min-width: 300px;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  animation: slideIn 0.3s ease-out;
  direction: rtl;
}
.custom-toast .toast-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  padding: 0 5px;
  opacity: 0.8;
}
.custom-toast .toast-close:hover {
  opacity: 1;
}
.custom-toast.toast-success {
  background: linear-gradient(135deg, #28a745, #20c997);
}
.custom-toast.toast-error {
  background: linear-gradient(135deg, #dc3545, #e74c3c);
}
.custom-toast.toast-warning {
  background: linear-gradient(135deg, #ffc107, #fd7e14);
}
.custom-toast.toast-info {
  background: linear-gradient(135deg, #17a2b8, #0dcaf0);
}
@keyframes slideIn {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes slideOut {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100px); opacity: 0; }
}
