body {
		font-family: Arial, sans-serif;
		text-align: center;
		padding: 20px;
		background-color: #333; /* Dark background */
		color: #fff; /* Light text */
}

.container {
		background-color: #1a1a1a; /* Darker background for container */
		padding: 20px;
		border-radius: 8px;
		box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1); /* Lighter shadow */
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
}

.autocomplete {
		position: relative;
		display: inline-block;
		width: 100%;
		margin-bottom: 15px;
}

input[type="text"], button {
		width: calc(100% - 20px);
		padding: 10px;
		margin-bottom: 5px;
		border: 1px solid #555; /* Darker border */
		border-radius: 4px;
		box-sizing: border-box;
		background-color: #555; /* Darker input background */
		color: #fff; /* Light text */
}

.theme-toggle {
		position: fixed;
		top: 10px;
		font-family: "monospace";
		-webkit-font-feature-settings: "liga" 0;
		font-feature-settings: "liga" 0;
		right: 10px;
		cursor: pointer;
		font-size: 24px; /* Adjust the size as needed */
		color: #fff; /* Color of the icon */
}

button {
		background-color: #4CAF50;
		color: white;
		border: none;
		cursor: pointer;
}

button:hover {
		background-color: #45a049;
}

.suggestions {
		position: absolute;
		text-align: center;
		justify-content: center;
		z-index: 99;
		top: 100%;
		left: 0;
		right: 0;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.2s ease-out;
		padding-left: 10px;
}

.suggestions-container {
		display: flex;
		justify-content: center;
		overflow-x: auto;
		white-space: nowrap;
		padding-bottom: 5px;
}

.suggestion-item {
		background-color: #555; /* Darker background for suggestions */
		padding: 5px 10px;
		border-radius: 20px;
		cursor: pointer;
		margin-right: 5px;
		flex-shrink: 0;
		color: #fff; /* Light text */
}

.suggestion-item:hover {
		background-color: #666; /* Lighter background on hover */
}

#airportInfo {
		margin-top: 20px;
		text-align: left;
		color: #fff; /* Light text */
}

.error-message {
		color: #ff8a80;
}

@media screen and (max-width: 600px) {
		.container {
				width: 90%;
		}
		.theme-toggle {
				display: none;
		}
}