/* Language Hub Styles */
.language-results::-webkit-scrollbar {
    width: 6px;
}

.language-results::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

#langSearch:focus {
    border-color: var(--blue) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    box-shadow: 0 0 20px rgba(0, 122, 255, 0.2);
}

.language-results .prompt-card {
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 12px !important;
}

.language-results .prompt-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.language-search-container {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}