/* Toolbar Styles */
.v-toolbar__content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.v-toolbar-title {
    flex-grow: 1;
    text-align: center;
}

.toolbar__title,
.v-toolbar-title h2 {
    font-family: "Sans-serif";
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

/* Button Styles */
.nav-buttons,
.min-max-toggle,
.help-toggle {
    position: absolute;
}

.nav-buttons {
    left: 10px;
}

.min-max-toggle,
.help-toggle {
    right: 10px;
}

.min-button {
    border-radius: 60px;
    background-color: #BE1E2D;
    border-color: #BE1E2D;
}

.end-live-chat-button {
    color: white;
    background-color: red;
}

/* Hidden Elements */
.menu,
.help-toggle,
.v-toolbar-title.hidden-xs-and-down.toolbar-title .v-toolbar-title__placeholder .chat-mode-indicator,
.message-button {
    display: none;
}

/* Chat UI Styles */
.bg-red {
    background-color: #0C3A77;
}

.message-bot .message-bubble {
    background-color: #eeedeb;
}

.message-human .message-bubble {
    background-color: #9ACDF3;
}

.min-button-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1002;
}

.input-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background-color: #fff;
    z-index: 1000;
}

/* Iframe Styles */
.lex-web-ui-iframe {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    max-width: 350px;
    max-height: 500px;
    z-index: 1001;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.lex-web-ui-iframe iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.lex-web-ui-iframe--minimize {
    max-height: 60px;
    max-width: 60px;
    min-width: 60px;
    border-radius: 30px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .lex-web-ui-iframe {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        margin: 0;
        border-radius: 0;
    }

    .lex-web-ui-iframe--minimize {
        top: auto;
        left: auto;
        bottom: 20px;
        right: 20px;
    }
}