<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* styles.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 25%; /* set to 50 to be at center of std web background */
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
}

.overlay h1 {
    color: #ff6600;
    font-size: 2rem;
    margin-bottom: 20px;
}

.search-bar {
    display: flex;
    flex-direction: row; /* Align fields horizontally */
    justify-content: space-between; /* Distribute evenly */
    align-items: center;
    gap: 20px; /* Add space between fields */
}

.search-bar select {
    max-height: 10em; /* Limit dropdown height for 10 rows */
    overflow-y: auto; /* Enable vertical scrolling */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    width: 200px; /* Ensure consistent width */
}

.search-bar button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.search-bar button:hover {
    background-color: #0056b3;
}
</pre></body></html>