/* We are moving the styling to the HTML.
This file now only handles the visibility logic. */
.section {
display: none; /* Hide all sections by default */
animation: fadeIn 0.3s ease-in-out;
}
.section.active {
display: block; /* Only show the active section */
}
/* Smooth fade in animation */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
/* Custom scrollbar for chat */
.chat-messages::-webkit-scrollbar {
width: 6px;
}
.chat-messages::-webkit-scrollbar-track {
background: #f1f1f1;
}
.chat-messages::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 3px;
}
.chat-messages::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
}