/* Toast Notification System Styles */
#toast-notification-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  width: 350px;
}

.toast-notification {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
}

.toast-notification.toast-show {
  transform: translateX(0);
}

.toast-notification.toast-error {
  background: linear-gradient(135deg, #f44336, #da190b);
}

.toast-notification.toast-warning {
  background: linear-gradient(135deg, #ff9800, #f57c00);
}

.toast-notification.toast-info {
  background: linear-gradient(135deg, #2196F3, #1976D2);
}

.toast-icon {
  background: rgba(255, 255, 255, 0.2);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-weight: bold;
  font-size: 16px;
}

.toast-close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  margin-left: 10px;
  opacity: 0.8;
  padding: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transition: opacity 0.2s ease;
}

.toast-close-btn:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 480px) {
  #toast-notification-container {
    left: 10px !important;
    right: 10px !important;
    width: auto !important;
  }
  
  .toast-notification {
    padding: 12px 16px;
    font-size: 13px;
  }
  
  .toast-icon {
    width: 24px;
    height: 24px;
    font-size: 14px;
    margin-right: 10px;
  }
}