/* SRP: move-file modal overlay and form fields. */

.drv-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
}

.drv-modal {
  background: var(--bg); border: 1px solid var(--card-border);
  border-radius: 14px; padding: 28px;
  min-width: 360px; max-width: 420px;
}
.drv-modal h3 { font-size: 18px; margin: 0 0 20px; color: var(--text); }

.drv-modal-field { margin-bottom: 16px; }
.drv-modal-field-ac { position: relative; }
.drv-modal-field label {
  display: block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted); margin-bottom: 6px;
}
.drv-modal-field input {
  width: 100%; padding: 10px 12px; border-radius: 8px;
  border: 1px solid var(--card-border); background: var(--card);
  color: var(--text); font-size: 14px; box-sizing: border-box;
}
.drv-modal-field input:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124,92,255,.15);
}

.drv-modal-actions {
  display: flex; gap: 10px; justify-content: flex-end; margin-top: 22px;
}
