.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;

    scrollbar-width: none;

}

.animate-slow-pulse {
    animation: slowPulse 8s infinite alternate;
}

@keyframes slowPulse {
    0% {
        transform: scale(1.0);
    }

    100% {
        transform: scale(1.05);
    }
}

.text-shadow-lg {
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.particle-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    background: rgba(255, 70, 85, 0.2);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.particle-1 {
    width: 10px;
    height: 10px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle-2 {
    width: 20px;
    height: 20px;
    top: 40%;
    left: 80%;
    animation-delay: -5s;
}

.particle-3 {
    width: 15px;
    height: 15px;
    top: 60%;
    left: 30%;
    animation-delay: -2s;
}

.particle-4 {
    width: 25px;
    height: 25px;
    top: 70%;
    left: 70%;
    animation-delay: -7s;
}

.particle-5 {
    width: 30px;
    height: 30px;
    top: 30%;
    left: 50%;
    animation-delay: -3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    25% {
        transform: translateY(-20px) translateX(10px);
    }

    50% {
        transform: translateY(0) translateX(20px);
    }

    75% {
        transform: translateY(20px) translateX(10px);
    }
}

#suggestions.visible {
    opacity: 1;
    transform: translateY(0);
}

.suggestion-item {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 70, 85, 0.1);
    transition: all 0.2s ease;
}

.suggestion-item:hover {
    background-color: rgba(255, 70, 85, 0.15);
}

.suggestion-item .flex-col {
    align-items: flex-start;
    text-align: left;
    width: 100%;
}

.suggestion-item {
    text-align: left;
    justify-content: flex-start;
    padding-left: 16px;
}

.suggestion-item:last-child {
    border-bottom: none;
}


#suggestions {
    z-index: 9999 !important;
    max-height: 210px;
    overflow-y: auto;
    transform-origin: top center;
    transition: all 0.2s ease-in-out;
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    padding-right: 8px;

}

#suggestions::-webkit-scrollbar {
    width: 8px;
}

#suggestions::-webkit-scrollbar-track {
    background: #151E25;
}

#suggestions::-webkit-scrollbar-thumb {
    background-color: #FF4655;
    border-radius: 10px;
}


.suggestion-item {
    text-align: left;
    justify-content: flex-start;
    padding-left: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}