
body {
    font-family: 'Poppins', sans-serif;
}
.teal-accent::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #00C4B4;
}
.typing-indicator span {
    height: 8px;
    width: 8px;
    background-color: #00C4B4;
    border-radius: 50%;
    display: inline-block;
    animation: bounce 1.4s infinite ease-in-out both;
}
.typing-indicator span:nth-child(1) {
    animation-delay: -0.32s;
}
.typing-indicator span:nth-child(2) {
    animation-delay: -0.16s;
}
@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1.0); }
}
.dashboard-layout {
    display: flex;
    height: 100vh;
}
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
