* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

/* Overlay achtergrond */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Popup box */
.modal {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  width: 100%;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Titel */
.modal h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

/* Tekst */
.modal p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #333;
}

/* Buttons container */
.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Basis knop */
.btn {
  padding: 12px 25px;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  cursor: pointer;
  min-width: 140px;
  transition: 0.2s ease;
}

/* Verwijderen knop */
.delete {
  background: #ff3b30;
  color: white;
}

.delete:hover {
  background: #e22e24;
}

/* Annuleren knop */
.cancel {
  background: #2f6df6;
  color: white;
}

.cancel:hover {
  background: #255ad1;
}

/* 📱 Responsive */
@media (max-width: 500px) {
  .modal {
    padding: 20px 15px;
  }

  .modal h2 {
    font-size: 22px;
  }

  .modal p {
    font-size: 16px;
  }

  .buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
  }
}