.custom-dropdown {
    position: absolute;
    display: none;
    z-index: 1000;
    list-style-type: none;
    padding: 0;
    margin: 0;
    background-color: white;
    border: 1px solid #ccc;
    max-height: 200px; /* Limit height */
    overflow-y: auto; /* Enable scrolling */
}

.custom-dropdown li {
    padding: 10px; /* Add padding for better touch/click area */
    cursor: pointer;
}

.custom-dropdown li:hover {
    background-color: #f0f0f0; /* Highlight on hover */
}
