/* Snackbar Notification System Styles */

#snackbar-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.snackbar {
  min-width: 300px;
  max-width: 500px;
  padding: 16px 24px;
  border-radius: 8px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  word-wrap: break-word;
}

.snackbar.show {
  opacity: 1;
  transform: translateY(0);
}

/* Success - Green */
.snackbar-success {
  background-color: #28a745;
}

/* Error - Red */
.snackbar-error {
  background-color: #dc3545;
}

/* Warning - Orange */
.snackbar-warning {
  background-color: #ffc107;
  color: #212529;
}

/* Info - Blue */
.snackbar-info {
  background-color: #17a2b8;
}

/* Icons */
.snackbar i {
  font-size: 18px;
  flex-shrink: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
  #snackbar-container {
    bottom: 10px;
    right: 10px;
    left: 10px;
  }

  .snackbar {
    min-width: auto;
    width: 100%;
    max-width: none;
  }
}

/* Hover to pause auto-dismiss */
.snackbar:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}



