.driverstore-notif {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #28a745; /* success par défaut */
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all .3s ease;
  z-index: 9999;
}

.driverstore-notif.show {
  opacity: 1;
  transform: translateY(0);
}

/* ERROR override */
.driverstore-notif.error {
  background: #dc3545;
}

.company_url { display: none;}