styles.css
/* Custom Scrollbar for the futuristic terminal feel */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
    background: #FFD700;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #39FF14;
}

.agent-msg {
    align-self: flex-start;
    background: rgba(57, 255, 20, 0.05);
    border-left: 2px solid #39FF14;
    padding: 10px;
    max-width: 80%;
    margin-top: 10px;
    text-shadow: 0 0 5px rgba(57, 255, 20, 0.3);
}

.user-msg {
    align-self: flex-end;
    background: rgba(255, 215, 0, 0.05);
    border-right: 2px solid #FFD700;
    padding: 10px;
    max-width: 80%;
    margin-top: 10px;
    color: white;
}