@keyframes colorChange {
    0% { fill: #007bff; }
    50% { fill: #6610f2; }
    100% { fill: #007bff; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

.logo-text {
    font-weight: bold;
    font-family: Arial, sans-serif;
    animation: colorChange 3s infinite;
}

.avatar-svg {
    width: 100px;
    height: 100px;
}

.bot-speaking {
    animation: float 0.5s infinite ease-in-out;
}

.sidebar {
    min-height: 100vh;
    background: #f8f9fa;
    padding: 20px;
}

.content-area {
    padding: 20px;
}

#chat-window {
    height: 400px;
    overflow-y: auto;
    background: #fdfdfd;
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

.chat-bubble {
    max-width: 80%;
    margin-bottom: 15px;
    padding: 10px 15px;
    border-radius: 20px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.4;
}

.bot-bubble {
    background: #e9ecef;
    color: #212529;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.user-bubble {
    background: #007bff;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
    margin-left: auto;
}

#map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}
