body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	height: 100vh;
  }


  
  h1 {
	margin-bottom: 20px;
  }
  
  #searchSection {
	margin-bottom: 20px;
  }
  
  .column-search {
	width: 100%;
	margin-top: 5px;
  }
  
  #searchColumn9 {
	width: 49.6%;
  }
  
  .search-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
	flex-wrap: wrap;
  }
  
  .search-item {
	flex: 1 1 calc(50% - 20px); /* Adjust for two columns */
	margin-right: 20px;
	margin-bottom: 10px;
  }
  
  .search-item label {
	display: block;
	margin-bottom: 5px;
  }
  
  input {
	padding: 10px;
	width: 100%;
	box-sizing: border-box;
  }
  
  button {
	padding: 10px 20px;
	cursor: pointer;
	margin-top: 10px;
  }
  
  #tableContainer {
	flex: 1;
	overflow-y: auto;
	margin: 20px auto; /* Center the table container */
	height: calc(100vh - 200px); /* Adjust height to fit within the viewport */
	width: 100%; /* Use full width */
	max-width: 100%; /* Maximum width */
  }
  
  table {
	width: 100%;
	border-collapse: collapse;
	font-size: 1.0em; /* Smaller font size for the table */
	table-layout: fixed; /* Fixed table layout */
  }
  
  th, td {
	padding: 5px; /* Reduce padding */
	border: 2px solid black; /* Increase border width and set color to black */
	text-align: left;
	word-wrap: break-word; /* Allow text to wrap */
	white-space: normal; /* Allow text to wrap */
  }
  
  th {
	background-color: rgb(62, 152, 188); /* Light blue color for the header */
	position: sticky;
	top: 0;
	z-index: 1;
  }
  
  th:nth-child(1), td:nth-child(1) { width: 10%; } /* Adjust width as needed */
  th:nth-child(2), td:nth-child(2) { width: 5%; } /* Adjust width as needed */
  th:nth-child(3), td:nth-child(3) { width: 5%; } /* Adjust width as needed */
  th:nth-child(4), td:nth-child(4) { width: 10%; } /* Adjust width as needed */
  th:nth-child(5), td:nth-child(5) { width: 10%; } /* Adjust width as needed */
  th:nth-child(6), td:nth-child(6) { width: 10%; } /* Adjust width as needed */
  th:nth-child(7), td:nth-child(7) { width: 10%; } /* Adjust width as needed */
  th:nth-child(8), td:nth-child(8) { width: 10%; } /* Adjust width as needed */
  th:nth-child(9), td:nth-child(9) { width: 10%; } /* Adjust width as needed */

  @media (max-width: 600px) {
	.search-item {
	  flex: 1 1 100%; /* Full width on small screens */
	  margin-right: 0;
	}
  
	button {
	  width: 100%; /* Full width button on small screens */
	}
  
	table {
	  font-size: 0.9em; /* Even smaller font size for very small screens */
	}
  
	th, td {
	  padding: 3px; /* Further reduce padding */
	}
  }
  
  .link-available {
	color: blue;
	text-decoration: underline;
	cursor: pointer;
  }
  
  .link-available:hover {
	color: darkblue;
  }
  