/* Basic styling for the widget */
#container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin:5px;
    padding: 8px 16px;
}

#pickupDropdown, #destinationDropdown {
    width: 100%;
    padding: 8px;
    font-size: 16px;
    border: 2px solid #ffffff;
    border-radius: 4px;
    margin: 5px 0;
    box-sizing: border-box;
}
#submitBtn {
    padding: 8px 16px;
    font-size: 16px;
    background-color: #654A35;
    color: white;
    border: 2px solid #654A35; /* Add 'solid' for border style */
    border-radius: 4px;
    cursor: pointer;
    max-width: 50%;
    margin: 5px;
    align-self: center;
    width: 100%;
    box-sizing: border-box;
    transition: background-color 0.3s ease, border-color 0.3s ease; /* Add transition properties */
}

#submitBtn:hover {
    background-color: white; /* New background color on hover */
    border-color: white; /* New border color on hover */
    transform: scale(1.05); /* Scale up the button on hover */
    color: #654A35; /* Change text color on hover */
}
#resultMessage {
    margin-top: 10px;
    font-size: 16px;
}
.alert {
    color: White; /* Change this to your desired text color */
}

/* 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;
    }
}
