#pasrobot-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#pasrobot-popup {
  background: #ffffff;
  width: 320px;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#pasrobot-popup h2 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}

#pasrobot-popup p {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: #555;
}

#pasrobot-confirm-btn {
  background: #3498db;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

#pasrobot-confirm-btn:hover {
  background: #2978b5; /* Teinte plus sombre */
}