body {
    background-color: #ebebeb;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
#chat-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

#messages {
    height: 75%;
    position: fixed;
    padding-right: 8px;
    overflow-y: auto; /* Add this to enable vertical scrolling if needed */
}

#container {
    flex: 1;
    position: fixed;
    box-shadow: 0.5px 2.5px 0.5px 1px rgba(0.1, 0.1, 0.1, 0.1);
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #fff;
    z-index: 1000;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px
}

#input-container {
    padding: 15px
}

.message-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 15px;
    margin: 25px 0
}

.user-bubble {
    background-color: #FD6672;
    color: #f8f8f8;
    border-radius: 10px;
    padding: 10px;
    margin-left: auto
}

.bot-bubble {
    background-color: #fff;
    color: #777;
    border-radius: 10px;
    padding: 10px;
    margin-right: auto
}

p {
    font-size: 18px
}

a {
    text-decoration: none
}

#scroll-to-bottom-button {
   position: fixed;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    padding: 8px;
    background-color: rgba(22, 22, 22, 0.60);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    z-index: 1001;
    display: none;
    transition: opacity 0.3s ease
}

#scroll-to-bottom-button:hover {
    background-color: #555
}

#scroll-to-bottom-button.show {
    display: block
}

.fill-input-button {
    background-color: #eaeaea;
    color: #111;
    padding: 8px;
    border: none;
    border-radius: 15px;
    margin-right: 10px;
    margin-bottom: 5px;
    cursor: pointer
}

.fill-input-button:hover {
    background-color: #bfbfbf
}

#fill-container {
    margin-top: 15px
}

#message-input-container {
    background: none;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
}

#user-input {
    flex: 0.9;
    padding-left:5px ;
    color: #aaa;
    border: none;
    outline: none;
}

#send-button {
    flex: 0.1;
    border: none;
    outline: none;
    background: none;
    color: #FD6672;
    font-size: 28px;
    cursor: pointer;
}

#send-button:hover {
    color: #FD8888
}