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

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Animation for connection status */
@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}
.connecting {
    animation: pulse 1.5s infinite;
}

/* AI Panel Transitions */
#ai-panel {
    transition: all 0.3s ease-out;
}

#ai-results {
    transition: opacity 0.3s ease;
}
