body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f4f4f4;
}
.chat-container {            
    width: 30%;            
}
.chat-box {
    flex: 1;
    overflow-y: auto;
    padding: 10px;            
    background: #fff;
    display: flex;
    flex-direction: column-reverse;
}
.chat-bubble {
    padding: 8px;
    border-radius: 10px;
    margin: 5px;
    max-width: 70%;
    word-wrap: break-word;
}
.user {
    background-color: #007bff;
    color: white;
    align-self: flex-end;
    text-align: right;
}
.bot {
    /* background-color: #e0e0e0; */
    color: black;
    align-self: flex-start;
    text-align: left;
}
.chat-input-container {
    position: relative;
    padding: 20px;
    background: #fff;
    /* border: 1px solid #ccc; */            
    border-radius: 15px;
}
.chat-input {
    display: flex;
    gap: 5px;
    width: 100%;
}
input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
/* button {
    padding: 10px;
    border: none;
    background: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
} */
.suggestions {
    position: absolute;
    bottom: 50px;
    left: 10px;
    right: 10px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 100;
    padding: 5px 0;
}
.suggestions div {
    padding: 8px;
    cursor: pointer;
}
.suggestions div:hover {
    background-color: #f0f0f0;
}
.typing {
    display: flex;
    align-items: center;
    gap: 3px;
    font-style: italic;
    color: gray;
}
.dots {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: gray;
    border-radius: 50%;
    animation: blink 1.4s infinite;
}
.dots:nth-child(2) {
    animation-delay: 0.2s;
}
.dots:nth-child(3) {
    animation-delay: 0.4s;
}
@keyframes blink {
    0% { opacity: 0.2; }
    20% { opacity: 1; }
    100% { opacity: 0.2; }
}

@media screen and (max-width: 768px) {
    .chat-container {
        width: 100%;
    }
    
}