/* This CSS will apply styles when the viewport width is 600px or less */
@media (max-width: 600px) {
    .bot-profile-pic {
        display: none;
    }
}
#start-chat-btn {
    border-radius: 9px;
    border: #595959 5px solid;
    font-size: 1.6rem;
    margin-right: 57px;
    margin-bottom: 0px;
}
#chat-box {
    position: fixed;
    bottom: 18px;
    right: 10px;
    z-index: 100000000000;
}

#chat-content {
    display: none;
    background-color: #222222;
    border: 4px solid #2b834c;
    border-radius: 47px;
    padding: 10px;
}

#messages {
    height: 400px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.message {
    padding: 5px 10px;
    border-radius: 20px;
    margin: 5px;
    max-width: 100%;
}

.user-message {
    background-color: #DCF8C6;
    align-self: flex-end;
        font-size: 1rem;
}

.bot-message {
    background-color: #2d2d2d;
    align-self: flex-start;
    display: flex;
    align-items: center;
  font-size: 1rem;
}

.bot-profile-pic {
    width: 50px;
    height: 50px;
    /*border-radius: 50%;*/
    margin-right: 10px;
    background: url('profile_pic.png') no-repeat center center;
    background-size: cover;
}
img.typing-indicator {
    width: 45px !important;  /* Adjust the width as needed */
    height: auto; /* This will maintain the aspect ratio */
    display: block; /* Optional, for centering if needed */
    margin: 0 auto; /* Optional, for centering if needed */
}
.typing-indicator img {
    width: 10px !important;  /* Adjust the width as needed */
    height: auto; /* This will maintain the aspect ratio */
    display: block; /* Optional, for centering if needed */
    margin: 0 auto; /* Optional, for centering if needed */
}
#button-options button {
    margin: 5px;
    padding: 5px 10px;
    
}
#button-options button {
    display: block;
    margin: 5px 0; 
    margin-left:10%;
    width: 80%; 
    border-radius: 10px; /* Adjust this value to get the desired roundness */
    /* Add more styling as needed */
}
#user-input, #chat-content > button {
    display: none;
}

