html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.drop-zone {
    border: 2px dashed #0d6efd;
    border-radius: 8px;
    background-color: #f8fbff;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

    .drop-zone.drag-over {
        background-color: #e7f1ff;
        border-color: #0a58ca;
    }

@media print {
  header,
  footer,
  nav,
  .navbar,
  .print-hidden {
    display: none !important;
  }

  body {
    margin: 0;
  }

  main {
    padding: 0;
  }

  .print-container {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .print-card {
    border: 1px solid #dee2e6;
    box-shadow: none !important;
  }

  .page-break {
    page-break-after: always;
  }

  .page-break:last-child {
    page-break-after: auto;
  }
}