body {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

#search-container {
  display: flex;
  margin: 20px;
  gap: 30px;
  align-items: center;
  /* width: 80%; */
  text-align: center;
}

#port-select {
  width: 300px;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #ccc;
  font-size: 16px;
}

#container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  max-width: 1200px;
}

#map {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  margin-bottom: 15px;
  /* Adds spacing between map and table */
}

#details {
  width: 100%;
  max-width: 100%;
  overflow-y: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  background-color: #f9f9f9;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

th {
  background-color: #f2f2f2;
  font-weight: bold;
}
