/* css/review-rapport.css */
/* Voeg toe aan profiel.html, eigenprofiel.html en gereedschap.html:      */
/* <link rel="stylesheet" href="css/review-rapport.css" />                */

/* ── Overlay ─────────────────────────────────────────────────────────────── */
#reviewRapportModal.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

/* ── Modal box ───────────────────────────────────────────────────────────── */
#reviewRapportModal .modal {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

/* ── Header (titel + sluitknop naast elkaar) ─────────────────────────────── */
#reviewRapportModal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

#reviewRapportModal .modal-header h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
}

#reviewRapportModal .modal-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: #6b7280;
  padding: 0.2rem 0.4rem;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}

#reviewRapportModal .modal-close:hover {
  background: #f3f4f6;
  color: #1a1a1a;
}

/* ── Tekst ───────────────────────────────────────────────────────────────── */
#reviewRapportModal .modal-text {
  margin: 0;
  font-size: 0.95rem;
  color: #374151;
}

/* ── Textarea ────────────────────────────────────────────────────────────── */
#reviewRapportModal textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  resize: vertical;
  background: #fff;
  color: #1a1a1a;
  box-sizing: border-box;
  transition: border-color 0.15s;
  min-height: 100px;
}

#reviewRapportModal textarea:focus {
  outline: none;
  border-color: #2563eb;
}

/* ── Actieknoppen ────────────────────────────────────────────────────────── */
#reviewRapportModal .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
}

#reviewRapportModal .btn-cancel {
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: none;
  cursor: pointer;
  font-size: 0.9rem;
  color: #6b7280;
  transition: background 0.15s;
}

#reviewRapportModal .btn-cancel:hover {
  background: #f3f4f6;
}

#reviewRapportModal .btn-submit {
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  border: none;
  background: #dc2626;
  color: #fff;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.15s;
}

#reviewRapportModal .btn-submit:hover {
  background: #b91c1c;
}