body {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100vh;
    margin: 0;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/5577672.jpg");
    background-size: cover;
    opacity: 0.2;
    z-index: -1;
}

#chatbox {
    flex-grow: 1;
    overflow-y: auto;
    width: 80%;
    padding: 10px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    background-color: #fff;
    max-height: 60vh;
}

#message-form {
    display: flex;
    width: 80%;
}

#message-input {
    font-size: 16px;
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-right: none;
    outline: none;
}

#message-form button {
    font-size: 16px;
    padding: 10px;
    border: 1px solid #ddd;
    background-color: #ddd;
}

.message-user, .message-bot {
    max-width: 60%;
    margin-bottom: 15px;
    padding: 15px;
    color: white;
    display: flex;
}

.message-user {
    border-radius: 20px 0px 20px 20px;
    margin-left: auto;
    background-color: #6d88b6;
}

.message-bot {
    border-radius: 0px 20px 20px 20px;
    margin-right: auto;
    background-color: #777777;
}

.typing-indicator {
    animation: blink 1s linear infinite;
    margin-left: 10px;
}

@keyframes blink {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

#logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

#logo-container img {
    max-width: 150px;
    margin-bottom: 20px;
    height: auto;
}

#branding {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    font-size: 0.8em;
    color: #888;
}
#branding-link{
    color: #888;
    margin-left: 5px;
}


#bp-web-widget{
    margin: 5% !important;
    width: 90% !important;
    max-height: 80% !important;
}

@media screen and (max-width: 800px) {

#bp-web-widget{
    margin: 0% !important;
    width: 100% !important;
    max-height: 100% !important;
}

}