/* Styles specific to the dealer enrollment page */
#dealer-url-suggestions {
    z-index: 1000; /* Ensure it's above other elements */
    display: none; /* Initially hidden */
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ced4da; /* Bootstrap default border color */
    border-top: none;
    border-radius: 0 0 .25rem .25rem; /* Match Bootstrap input rounding */
}
#dealer-url-suggestions .list-group-item {
    cursor: pointer;
}
#dealer-url-suggestions .list-group-item:hover {
    background-color: #f8f9fa; /* Bootstrap light hover */
}