/* Basic styling for the widget */
#container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#pickupDropdown, #destinationDropdown {
    width: 100%;
    padding: 8px;
    font-size: 16px;
    border: 2px solid #9B2050;
    border-radius: 4px;
    margin: 5px 0;
    box-sizing: border-box;
}

#submitBtn {
    padding: 8px 16px;
    font-size: 16px;
    background-color: #9B2050;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    max-width: 50%;
    margin: 5px;
    align-self: center;
    width: 100%;
    box-sizing: border-box;
}

#resultMessage {
    margin-top: 10px;
    font-size: 16px;
}

/* Media query for screens with a max width of 600px (typical for mobile devices) */
@media (max-width: 600px) {
    #pickupDropdown, #destinationDropdown, #submitBtn {
        font-size: 14px;
        padding: 10px;
    }
}
