/* Styles pour les notifications */
#notification-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 9999;
  max-width: 400px;
  width: 100%;
}

.notification-item {
  background: white !important;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  margin-bottom: 0.5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  max-width: 100%;
  width: 100%;
  color: #1f2937 !important;
}

.notification-item.translate-x-0 {
  transform: translateX(0);
}

.notification-item.translate-x-full {
  transform: translateX(100%);
}

/* Mode sombre - garder le fond blanc pour les notifications */
.dark .notification-item {
  background: white !important;
  color: #1f2937 !important;
}

/* Animation d'entrée */
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Animation de sortie */
@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 768px) {
  #notification-container {
    top: 0.5rem;
    right: 0.5rem;
    left: 0.5rem;
    max-width: none;
  }
  
  .notification-item {
    margin-bottom: 0.25rem;
  }
} 