
#id_url {
    background-color: #111827 !important;
    border: #3f3f3f solid 1px;
}

.suggest-dropdown {
    background-color: #2b2b2b; /* Change this to your desired color */
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    width: calc(100% - 2rem); /* Adjust width as per the input field */
    display: none; /* Hidden by default */
    margin-top: 5px;
    list-style: none;
    padding: 0;
    z-index: 1000; /* Ensure it appears above other elements */
}

.suggest-dropdown li {
    padding: 8px;
    cursor: pointer;
}

.suggest-dropdown li:hover {
    background-color: #2b2b2b; /* Optional: Change background color on hover */
}
