/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #3b39ca;
    color: #87bcdc;
}

/* Style for the header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #465ec9; /* Adjust color as needed */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0; /* Adjust padding as needed */
}

/* Add top padding to body to prevent content overlap with the header */
body {
    padding-top: 70px; /* Adjust this value based on header height */
    margin: 0;
}

/* Optional: Add padding to specific sections for consistent spacing */
section {
    padding: 2rem 1rem; /* Add more or less padding as needed */
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* Example styles for search box */
.search-box {
    display: none; /* Hide initially, toggle with JavaScript */
    position: absolute;
    right: 1rem;
    top: 1rem;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
}

section {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #83b9dc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

h2 {
    color: #5057e6;
    margin-bottom: 10px;
}

label {
    display: block;
    margin-top: 10px;
    color: #073a4e;
}

input, select, button {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #d6d6d6;
}

button {
    background-color: #3819a8;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

button:hover {
    background-color: #3685b3;
}

#map {
    width: 100%;
    height: 300px;
    background-color: #e2e2e2;
    border-radius: 8px;
    margin-top: 10px;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #739dd7;
    color: #e6dfea;
}
