/* Custom CSS for Jarvis MMRAG Assistant */

/* Custom header styling */
.cl-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Custom message styling */
.cl-message {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Custom input styling */
.cl-input {
    border-radius: 8px;
    border: 2px solid #e2e8f0;
}

.cl-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Custom button styling */
.cl-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cl-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Custom sidebar styling */
.cl-sidebar {
    background: #f8fafc;
    border-right: 1px solid #e2e8f0;
}

/* Custom logo styling */
.cl-logo {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Dark theme adjustments */
[data-theme="dark"] .cl-sidebar {
    background: #1a202c;
    border-right-color: #2d3748;
}

[data-theme="dark"] .cl-input {
    background: #2d3748;
    border-color: #4a5568;
    color: #e2e8f0;
}

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

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

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

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

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

.cl-message {
    animation: fadeIn 0.3s ease-out;
} 