/* Toast Notification Styles */
.toast-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  min-width: 300px;
  max-width: 500px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease-out;
  pointer-events: auto;
}

.dark .toast-notification {
  background: #1a1a1a;
  color: white;
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-notification.success {
  border-left: 4px solid #0BA02C;
}

.toast-notification.error {
  border-left: 4px solid #ff4757;
}

.toast-notification-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.toast-notification.success .toast-notification-icon {
  background: #E7F6EA;
  color: #0BA02C;
}

.toast-notification.error .toast-notification-icon {
  background: rgba(255, 71, 87, 0.1);
  color: #ff4757;
}

.toast-notification-message {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.4;
}

.toast-notification-close {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  opacity: 0.6;
  transition: opacity 0.2s;
  color: inherit;
}

.toast-notification-close:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .toast-notification {
    bottom: 10px;
    right: 10px;
    left: 10px;
    min-width: auto;
    max-width: none;
  }
}


