.notifier-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.notifier-item {
  background: white;
  border-radius: 8px;
  padding: 15px;
  min-width: 280px;
  max-width: 380px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
  pointer-events: auto;
}

.notifier-content {
  margin-bottom: 8px;
}

.notifier-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
}

.notifier-message {
  font-size: 0.9rem;
  color: #666;
}

.notifier-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(0,0,0,0.1);
}

.notifier-progress::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Types de notifications */
.notifier-success {
  border-left: 4px solid #4caf50;
}
.notifier-success .notifier-progress::before {
  background: #4caf50;
}

.notifier-error {
  border-left: 4px solid #f44336;
}
.notifier-error .notifier-progress::before {
  background: #f44336;
}

.notifier-info {
  border-left: 4px solid #2196f3;
}
.notifier-info .notifier-progress::before {
  background: #2196f3;
} 