/* ─── MODAL ───────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.modal {
  width: 700px;
  max-width: 95vw;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.modal h3 { font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.modal-body { max-height: 360px; overflow: auto; }

.manage-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.manage-table th, .manage-table td { padding: 8px 6px; border-bottom: 1px solid var(--border); text-align: left; }
.manage-table th { font-weight: 600; color: var(--text-muted); }
.manage-table a { color: var(--primary); text-decoration: none; }

.modal-actions { display: flex; gap: 8px; justify-content: flex-end; margin-top: 14px; }

.modal-actions button {
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  border: 1px solid var(--border);
  background: white;
  font-family: inherit;
}

.modal-delete-btn { background: var(--danger-bg) !important; color: var(--danger-text) !important; border-color: #fca5a5 !important; }
