/* style.css */
body {
  background-color: #f8f9fa;
}

.navbar {
  margin-bottom: 20px;
}

h2, h4 {
  font-weight: 600;
}

/* Widen the specified columns */
.wider-col {
  min-width: 150px;
}

table {
  font-size: 11px; /* Adjust as needed */
}


.pdf-drop-target.drag-over {
    outline: 2px dashed #0d6efd;
    outline-offset: 2px;
}


/* Optional: Adjust card or table shadows if needed */
.card {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.table thead {
    position: sticky;
    top: -2px;
    background: white;
    z-index: 10;
}






.table-container {
  /* Set a fixed height (and optionally width) for your table area */
  height: 70vh; /* adjust to your needs */
  width: 100%;
  overflow-x: auto; /* horizontal scrollbar */
  overflow-y: auto; /* vertical scrollbar */
}
