/* Wrapper container */
.table-responsive {
  overflow: scroll;
  width: 100vw;
  height: 85vw; /* Adjust height as needed */
  overflow: auto; /* Prevent scrolling on the container itself */

}

/* Table styling */
.farenegotiation-report-table {
  overflow: scroll;
}

/* Table headers */
.farenegotiation-report-table thead th {
  top: 0;
  background-color: #4CAF50;
  color: white;
  z-index: 1; /* Keeps headers above scrollable content */
}

/* Table body with scrollbars */
.farenegotiation-report-table tbody {
  overflow: scroll;
}

/* Table cells */
.farenegotiation-report-table td {
  padding: 10px;
  border: 1px solid #ddd;
  white-space: nowrap; /* Prevents text from wrapping */
}

/* Custom scrollbar styling */
.farenegotiation-report-table tbody::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

.farenegotiation-report-table tbody::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 6px;
}

.farenegotiation-report-table tbody::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.farenegotiation-report-table tbody::-webkit-scrollbar-track {
  background: #f1f1f1;
}

#edit-empty .webform-submission-form>fieldset {
  flex: 0 0 100%;
  max-width: 100%;
  justify-content: flex-end;
  align-items: flex-end;
}
#edit-actions .webform-submission-data div[data-drupal-selector=edit-actions]{
  flex: 0 0 100%;
  max-width: 100%;
  justify-content: flex-end;
  align-items: flex-end;
}
