.tabs-bar {
  padding: 5px;
  width: 100%;
  border: 1px solid;
  border-width: 0px 0px 1px 0px;
  position: sticky;
  top: 0;
  z-index: 999;
}
.tab {
  font-weight: bold;
  padding: 5px;
  margin: 0px 5px;
  border: 1px solid;
  background-color: #dddddd;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.tab:hover {
  background: #FEC293;
}
.tab.selected {
  background-color: #ffffff;
  border-bottom: 1px solid #ffffff;
}

/*SEARCH BAR*/
.search-container {
  overflow: hidden;
  display: flex;
  width: 100%;
}

#searchBar {
  overflow: hidden;
  width: 100%;
  display: inline-block;
}


#searchInput{ 
  width: calc(100% - 80px); 
  margin-right: 0;
  flex-grow: 1;
}

#searchSubmit {
  width: 75px;
  margin-left: 0;
  margin-top: 0;
}

/* TABLE */
.search-row {
  display: flex;
  margin-bottom: 20px; /* Optional: Add margin between rows for spacing */
}

.search-column {
  /* border: 1px solid #4a4a4a;  Optional: Add border for visual separation */
  padding: 10px; /* Optional: Add padding for spacing */
}

.search-column-full {
  width: 100%; /* Column takes up full width */
}

.search-column-filter {
  width: 25%; /* Column takes up half width */
}

.search-column-result {
  width: 75%; /* Column takes up half width */
}

/* FILTERS */ 
/* Style the button that is used to open and close the collapsible content */
.full-filter-collasible{
  margin-bottom: 5px;
}
.filter-collapsible {
  background-color: #e2e4e5;
  cursor: pointer;
  font-weight: bold;
  padding: 10px 20px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  color:#2c2b2b;
  
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.filter-active, .filter-collapsible:hover {
  background-color: #e2e4e5;
}

/* Style the collapsible content. Note: hidden by default */
.filter-content {
  padding: 0 18px;
  /* font-weight: bold; */
  display: none;
  overflow: hidden;
  background-color: #e2e4e5;
  color:#003c71;
  font-size: 12px;
}

.filter-collapsible:after {
  color: #2c2b2b !important;
  content: '\FF0B'; /* Unicode character for "plus" sign (+) */
  font-size: 25px;
  float: right;
  margin-left: 5px;
  text-align: middle;
}

.filter-active:after {
  content: "\2212"; /* Unicode character for "minus" sign (-) */
  margin-right: 5px;
  font-size: 24px;
  text-align: middle;
}

.filter-count-collapsible-content {
  display: inline-block;
  height: 20px; /* Adjust the height as needed */
  border-radius: 10px; /* Adjust the border-radius to create an oval shape */
  background-color: #2c2b2b; /* Gray background color */
  color:#ffffff;
  font-size: 10px;
  font-weight: bold;
  padding: 5px 10px; 
  line-height: 10px;
  vertical-align: middle;
  margin-top: 5px;
  float: right; /* Align to the right side */
}

.search-filter-collapsible-content {
  padding: 0px 18px;
  margin-bottom: 5px;
}

.search-settings-range-form-group {
  display: flex;
  align-items: center;
  gap: 10px; /* Adjust the gap as needed */
  padding: 10px 0; /* Add top and bottom padding */
}

/* Optional: Adjust label width for better alignment */
.search-settings-range-form-group label {
  width: 120px; /* Adjust the width as needed */
}


.search-settings-container {
  margin-bottom: 5px;
  background-color: #e2e4e5;
  font-weight: bold;
  padding: 10px 20px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  color:#2c2b2b;
  box-sizing: border-box;
}

.search-settings-contents input{
  /* padding: 0 18px; */
  width: 100%;
}

.highlighted {
  background-color: yellow;
}

strong {
  font-weight: bold;
}


/* RECORD.HTML */

.results-box {
  width: 100%;
  padding: 10px;
  font-size: 15px;
}

/*ADD HTML*/

.add-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.add-column {
  width: 48%; /* Adjust width as needed */
}

.inputField {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: -7px; /* Adjust spacing as needed */
}

.field-label {
  font-size: 14px;
  margin-bottom: 1px; /* Add some spacing between label and input */
}

.field-input {
  width: 100%;
  font-size: 12px;
  box-sizing: border-box; /* Ensure padding and border are included in the element's total width and height */
}

.file-upload-container {
  font-size: 12px; /* Makes text smaller */
}

/*MODIFY HTML*/

.modify-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.modify-column {
  width: 48%; /* Adjust width as needed */
}


/*RECORD PAGE*/

.record-section h4 {
  border-bottom: 1px solid #ccc;
  padding-bottom: 4px;
  margin-top: 30px;
  font-weight: bold;
  color: #003366;
}

.record-table {
  width: 100%;
  border-spacing: 0 10px;
}

.record-table td {
  vertical-align: top;
  padding: 3px 10px 3px 0;
  font-size: 14px;
}

.record-label {
  font-weight: bold;
  white-space: nowrap;
  width: 180px;
}

.record-value {
  color: #333;
}

.record-links ul,
.record-pdfs ul {
  padding-left: 20px;
  font-size: 14px;
}

.record-links a,
.record-pdfs a {
  color: #003366;
  text-decoration: underline;
}

.record-links a:hover,
.record-pdfs a:hover {
  text-decoration: none;
}

