body {
    font-family: 'Roboto', sans-serif;
}

/* Chat button */
.chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007BFF;
    /* TVR blue */
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background-color 0.3s ease;
}

.chat-button:hover {
    background-color: #6610F2;
    /* Electric indigo on hover */
}

.vee-icon-button {
    width: 32px;
    height: 32px;
}

/* Chat container */
.chat-popup {
    display: none;
    flex-direction: column;
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 320px;
    max-height: 480px;
    background-color: #F5F5F5;
    /* Neo grey */
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    z-index: 999;
    animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.chat-header {
    font-family: 'Poppins', sans-serif;
    background-color: #0A0A0A;
    /* Deep space black */
    color: #FFFFFF;
    /* Digital white */
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    /* ruimte tussen icoon en tekst */
    font-size: 18px;
    font-weight: 600;
}

.vee-avatar {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.chat-window {
    flex-grow: 1;
    padding: 14px;
    overflow-y: auto;
    border-bottom: 1px solid #ccc;
}

.message {
    margin: 10px 0;
    font-size: 15px;
    line-height: 1.4;
}

.user {
    text-align: right;
    color: #007BFF;
    /* TVR blue */
    font-family: 'Roboto', sans-serif;
}

.bot {
    text-align: left;
    color: #0A0A0A;
    /* Deep space black */
    font-family: 'Roboto', sans-serif;
}

.input-area {
    display: flex;
    padding: 12px;
    background-color: #FFFFFF;
}

.input-area input {
    flex-grow: 1;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: 'Roboto', sans-serif;
}

.input-area button {
    margin-left: 8px;
    padding: 10px 14px;
    font-size: 14px;
    background-color: #007BFF;
    /* TVR blue */
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.input-area button:hover {
    background-color: #6610F2;
    /* Electric indigo */
}

.typing-indicator {
    display: inline-block;
    width: 50px;
    height: 20px;
    position: relative;
}

.typing-indicator span {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 3px;
    background-color: #007BFF;
    border-radius: 50%;
    animation: typing-indicator-blink 1.4s infinite both;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing-indicator-blink {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }

    20% {
        opacity: 1;
        transform: scale(1.2);
    }

    100% {
        opacity: 0.3;
        transform: scale(1);
    }
}