/* _content/ChatBot/Components/Layout/MainLayout.razor.rz.scp.css */
/* _content/ChatBot/Components/Pages/Home.razor.rz.scp.css */
@font-face {
    font-family: 'Mulish';
    src: url('/fonts/Mulish-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto-Regular.ttf') format('truetype');
}

.chat-container[b-d5obvvvn5f] {
    display: flex;
    flex-direction: column;
    height: 100%;
    /* ocupa 100% da altura do iframe */
}

.div-header[b-d5obvvvn5f] {
    background-color: #000033;
    flex: 0 0 10%;
    display: flex;
    align-items: center;
}

.div-main-chat[b-d5obvvvn5f] {
    flex: 0 0 70%;
    overflow-y: auto;
    background-color: #fff;
    gap: 10px;
    padding: 12px;
    display: flex;
    flex-direction: column;
}

.button[b-d5obvvvn5f] {
    background-color: #000033;
    color: #fff;
    border-radius: 5px;
    height: 100%;
    padding: 5px 12px;
}

.btn-send-message[b-d5obvvvn5f] {
    background-color: #000033;
    color: #fff;
    border-radius: 5px;
    height: 50px;
    width: 100px;
}

.div-input-message[b-d5obvvvn5f] {
    flex: 0 0 20%;
    background-color: #eee;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, .06);
}

.textarea[b-d5obvvvn5f] {
    width: min(100%, 1000px);
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    line-height: 1.4;
    font-family: Arial, sans-serif;
    font-size: 16px;
    resize: none;
}

.div-waiting-message[b-d5obvvvn5f] {
    width: 75px;
    height: 75px;
    border-radius: 100%;
    background-color: #000033;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 10px;
    right: 10px;
}

.store-info[b-d5obvvvn5f] {
    background-color: lightgray;
    color: #000033;
    display: flex;
    flex-direction: column;
    padding: 10px;
    border-radius: 5px;
    gap: 5px;
}

.store-name[b-d5obvvvn5f] {
    font-weight: bold;
    font-size: 19px;
}

.store-address[b-d5obvvvn5f] {
    font-size: 14px;
}

.store-phone[b-d5obvvvn5f] {
    font-weight: bold;
}

.store-button[b-d5obvvvn5f] {
    background-color: #48d597;
    color: #fff;
    border-radius: 5px;
    height: 40px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

p[b-d5obvvvn5f] {
    margin: 0;
    font-family: 'Roboto';
}

.row-message[b-d5obvvvn5f] {
    width: 100%;
    padding: 0 10px;
}

.row-message.from-user[b-d5obvvvn5f] {
    display: flex;
    justify-content: flex-end;
}

.row-message.from-bot[b-d5obvvvn5f] {
    display: flex;
    justify-content: flex-start;
}


.message[b-d5obvvvn5f] {
    border-radius: 10px;
    padding: 10px;
    width: fit-content;
}

.message.from-bot[b-d5obvvvn5f] {
    background: #ededed;
}

.message.from-user[b-d5obvvvn5f] {
    background: #48d597;
    color: #000033;
}
