
body {
    font-family: Verdana, Arial, sans serif;
    font-size: 11px;
    margin: 2px;
}

table.directions th {
    background-color: #EEEEEE;
}

img {
    color: #000000;
}

.style1 {
    border-width: 0px;
}

.style2 {
    text-align: left;
    font-weight: normal;
}

table.weather th {
    background-color: #EEEEEE;
}

.notes {
    font-size: 2em;
}

.center {
    margin-left: auto;
    margin-right: auto;
}

span {
    opacity: 0;
    transition: all 1s ease;
}

span.fade {
    opacity: 1;
}

.advanced-marker-drop {
    animation: drop 0.3s linear forwards var(--delay-time);
}



/* Default styles for larger screens */
.form-container {
    display: flex;
    align-items: center;
    gap: 20px; /* Add some space between elements */
    margin-bottom: 10px; /* Space out the form containers */
    max-width: 90%; /* Limit the combined width to 90% */
}

.input-group {
    display: flex;
    align-items: center;
    gap: 10px; /* Add some space between label and input */
    width: 100%; /* Ensure input-group takes the full width of its container */
}

.input-group label {
    white-space: nowrap;
    flex-shrink: 0; /* Prevent the label from shrinking */
}

.input-group input, .input-group select {
    flex-grow: 1; /* Allow the input to take the remaining space */
    padding: 5px;
}

.form-container button {
    padding: 8px 12px;
    white-space: nowrap; /* Prevent the button text from wrapping */
}

/* Mobile styles for screens narrower than 600px */
@media (max-width: 600px) {
    .form-container {
        flex-direction: column;
        align-items: stretch;
    }

    .input-group {
        flex-direction: column;
        align-items: stretch;
    }

    .form-container input,
    .form-container select,
    .form-container button {
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 8px; /* Add margin for better spacing on mobile */
    }

    .form-container button {
        padding: 10px;
    }
}




/* Default styles for larger screens */
.directions {
    width: 90%;
}

#map-canvas {
    height: 600px;
    width: 100%; /* Ensure the map canvas takes the full width of its container */
}

/* Mobile styles for screens narrower than 900px */
@media (max-width: 900px) {

    #map-canvas {
        height: 400px; /* Adjust height for better fit on mobile */
        width: 100%; /* Ensure it takes up the remaining space */
    }
}