:root {
  --primary-color: #4a90e2;
  --background-color: #121212;
  --text-color: #e0e0e0;
  --secondary-text-color: #b0b0b0;
  --border-color: #333;
  --container-bg: #1e1e1e;
  --shadow-color: rgba(255, 255, 255, 0.1);
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--background-color);
  color: var(--text-color);
}
.container {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background: var(--container-bg);
  border-radius: 8px;
  box-shadow: 0 4px 6px var(--shadow-color);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.tabs {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  margin-bottom: 20px;
  padding: 0;
  overflow-x: auto; /* Allow horizontal scrolling if needed */
}        
.tab-button {
  flex: 1;
  padding: 8px 0;
  text-align: center;
  border: 1px solid var(--border-color);
  background-color: transparent;
  color: var(--text-color);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.2;
  transition: background-color 0.3s ease;
  height: 40px;
}        
.tab-button.active {
  background-color: var(--primary-color);
  color: var(--background-color);
}      
/* Mobile adjustments */
@media (max-width: 600px) {
  .tabs {
    flex-wrap: wrap; /* Allow tabs to wrap to the next line if they don't fit */
    justify-content: flex-start; /* Align the buttons to the left */
  }        
  .tab-button {
    flex: 0 1 auto; /* Allow tabs to shrink and not stretch */
    margin-right: 10px; /* Space between tabs */
  }
}
h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
form {
  margin-bottom: 20px;
}
label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: var(--secondary-text-color);
}
select {
  width: 100%;
  padding: 8px;
  font-size: 1rem;
  background: var(--container-bg);
  color: var(--text-color);
  border: 1px solid var(--border-color);
  border-radius: 4px;
}
select option {
  background: var(--background-color);
  color: var(--text-color);
}
.place {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--container-bg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.place:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 10px var(--shadow-color);
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: var(--text-color);
}
p {
  margin: 8px 0;
  line-height: 1.6;
  color: var(--secondary-text-color);
}
a {
  color: var(--primary-color);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
ul {
  padding-left: 20px;
  list-style-type: disc;
}
ul li {
 list-style-position: inside;
}
.center {
  text-align: center
}