
/* FAISS index visualization */
.faiss-visualization {
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(124, 58, 237, 0.05);
    border-radius: 0.5rem;
    border: 1px dashed rgba(124, 58, 237, 0.2);
}

.faiss-visualization h3 {
    color: #7c3aed;
    margin-top: 0;
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}
/* Form styles */
input, select {
    transition: all 0.2s ease;
}

input:focus, select:focus {
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.2);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #9f7aea;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #805ad5;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .hero-text {
        font-size: 2.5rem;
    }
}