body, html {
    background-color: #1B1B1E;
    color: #FE5104;
    font-family: 'Roboto', sans-serif;
    height: 100%;
    margin: 0;
    overflow: hidden;
}

#input-border {
    background-color: #1B1B1E !important;
    border-color: #FE5104 !important;
}

#input-text {
    color: white !important;
}

#input-text::placeholder {
    color: #7E7E7E !important;
}

.chat-bubble {
    display: inline-block;
    max-width: 80%;
    word-wrap: break-word;
    color: white;
}

.bot-bubble {
    background-color: #FE5104;
    align-self: flex-start;
}

.user-bubble {
    background-color: #007BFF;
    align-self: flex-end;
}

.loading-bubble {
    display: inline-block;
    background-color: #FE5104;
    border-radius: 20px;
    padding: 10px;
    position: relative;
    align-self: flex-start;
}

.loading-dots {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 20px;
}

.loading-dots div {
    width: 5px;
    height: 5px;
    background-color: white;
    border-radius: 50%;
    animation: bounce 1.2s infinite;
    animation-timing-function: ease-in-out;
}

.loading-dots div:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots div:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 66%, 100% {
        transform: translateY(0);
    }
    33% {
        transform: translateY(-5px);
    }
}