    /* Hide scrollbar but allow scrolling */
    .no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for Firefox */
.no-scrollbar {
    scrollbar-width: none;
}

/* Hide scrollbar for IE, Edge */
.no-scrollbar {
    -ms-overflow-style: none;
}


.suggestion-box {
    border-radius: 8px;
    max-height: 500px;
    
    overflow-y: auto;
    position: absolute;
    background: white;
    z-index: 1000;
    width: 100%;
    margin-top: 20px;
    top: 100%;
    left: 0;
    box-shadow: 0px 4px 2px rgba(0,0,0,0.2);
    /* padding: 15px; */
    
}

.suggestion-item {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}



.suggestion-item a {
    text-decoration: none;
    color: black;
}

.suggestion-item:hover {
    background: #f7f7f7;
}


@media (prefers-color-scheme: dark) {
    .suggestion-item {
        padding: 20px;
        border-bottom: 1px solid #473e54;
    }
    .suggestion-item a {
        text-decoration: none;
        color: white;
    }
    .suggestion-item:hover a{
        color: black
    }
}


.suggestion-box::-webkit-scrollbar {
    width: 4px; 
}

.suggestion-box::-webkit-scrollbar-track {
    background: transparent; 
    border-radius: 10px; 
}


.suggestion-box::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3); 
    border-radius: 10px; 
    transition: background-color 0.3s ease; 
}

/* Hover effect for the scrollbar thumb */
.suggestion-box::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5); /* Darker thumb when hovered */
}

