/* Style for the search form container */
.postal-code-search-container {
    display: flex;
    /*justify-content: center;*/
    align-items: center;
    flex-direction: column;
    /*min-height: 100vh; */
    text-align: center; /* Center text */
}

#postal-code-search-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px; /* Adjust margin to place it under the title */
}

/* Style for the dropdown boxes */
#postal-code-search-form select {
    width: 200px;
    height: 40px;
    padding: 0 10px;
    font-size: 16px;
    border: 1px solid #dfe1e5;
    border-radius: 5px;
    box-shadow: none;
    outline: none;
    transition: all 0.3s ease;
}

/* Style for the dropdown boxes on focus */
#postal-code-search-form select:focus {
    border: 1px solid #4285f4;
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
}

/* Style for the search button */
#postal-code-search-form button {
    height: 40px;
    padding: 0 20px;
    font-size: 16px;
    color: #fff;
    background-color: #4285f4;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Style for the search button on hover */
#postal-code-search-form button:hover {
    background-color: #357ae8;
}

/* Style for the search result container */
#postal-code-result {
    text-align: center;
    margin-top: 20px;
    font-size: 20px;
}

/* Style for the loading indicator */
#loading-indicator {
    margin-top: 20px;
    font-size: 16px;
    color: #4285f4;
}
