/* Keep overrides minimal and global */

:root {
  --bs-border-radius: 0.75rem; /* softer, still “Bootstrap” */
}

.btn {
  font-weight: 600;
}

.card {
  border-color: rgba(0,0,0,0.08);
}

.form-text {
  color: rgba(0,0,0,0.6);
}

/* Make file drop zones feel friendly */
.dropzone {
  border: 2px dashed rgba(0,0,0,0.15);
  border-radius: var(--bs-border-radius);
  background: rgba(255,255,255,0.6);
}
.dropzone.dragover {
  border-color: rgba(13,110,253,0.45); /* Bootstrap primary-ish */
  background: rgba(13,110,253,0.04);
}

/* Print-friendly styles for exports */
@media print {
  .navbar,
  .no-print {
    display: none !important;
  }
  body {
    background: #fff;
  }
}
