/* 
.rightchat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
} */

/* .chat-button {
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background-color: #6b46c1;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
} */

.chat-widget {
    width: 100%;
    height: 420px;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    background-color: #20a103;
    /* background-color: white; */

}

.hidden {
    display: none;
}

.chat-header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0dff00;
    color: rgb(18, 1, 1);
    padding: 10px;
}

.chat-container {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
}

.no-messages {
    text-align: center;
    color: gray;
    margin-top: 50%;
}

.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}

.chat-footer {
    border-top: 1px solid #ccc;
    padding: 10px;
    background-color: white;
    display: flex;
    gap: 8px;
}
#chat-form{
    display: flex !important;
    width: -webkit-fill-available !important;
}

#chat-input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
    color: black;
}

.send-button {
    background-color: #eda305;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    cursor: pointer;
}

.close-button {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
}
#loading-spinner {
    display: none;
    justify-content: center;
    align-items: center;
    background-color: white;
    height: 100%;
}
.loader .dot {
    width: 10px;
    height: 10px;
    background-color: #6b46c1;
    border-radius: 50%;
    margin: 0 5px;
}

#speaking-icon {
    display: none;
    justify-content: center;
    align-items: center;
    background-color: white;
    height: 100%;
}

#speaking-icon img {
    width: 250px;
    height: 250px;
}

#instruction-image {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: white; */
    background-color: #20a103;
    height: 100%;
}

#instruction-image img {
    width: 250px;
    height: 250px;
}


