.dropdown {
    position: relative;
    width: 100%;
}

.dropdown input {
}

.dropdown input:focus {
}

.dropdown ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    /*margin-top: 17px;*/
    position: absolute;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 8px;
    background-color: #fff;
    z-index: 1000;
    display: none; /* Initially hidden */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown ul.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown li {
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dropdown li:hover {
    background-color: var(--background-fore-color);
    color: #fff;
}

/* Custom scrollbar styles */
ul::-webkit-scrollbar {
    width: 8px;
}

ul::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

ul::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

ul::-webkit-scrollbar-thumb:hover {
    background: #555;
}