/* _content/ChatHub.Web/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-694s5q6vl9] {
    height: 100%;
}

main[b-694s5q6vl9] {
    flex: 1;
    height: auto;
    display: flex;
    flex-direction: column;
}

.content[b-694s5q6vl9] {
    flex: 1;
    height: 100%;
}

@media (min-width: 1000px) {
    .page[b-694s5q6vl9] {
        flex-direction: row;
    }
}

#blazor-error-ui[b-694s5q6vl9] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-694s5q6vl9] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* _content/ChatHub.Web/Components/Layout/NavMenu.razor.rz.scp.css */
/* _content/ChatHub.Web/Components/Pages/Chat/Bulk.razor.rz.scp.css */
.bulk[b-z69gzvd9t1] {
    display: grid;
    grid-template-columns: 300px auto;
    grid-template-rows: 40px 40px auto;
    gap: 5px;
    height: calc(100vh - 3.5rem);
    width: 100%;
    padding: 10px;
}
/* _content/ChatHub.Web/Components/Pages/Chat/Inbox.razor.rz.scp.css */
.wrapper[b-0dm1t4tb2a] {
    display: grid;
    grid-template-columns: 320px auto;
    grid-template-rows: auto;
    height: 100%;
    width: 100%;
    background-color: #f5f5f5;
}

.subs[b-0dm1t4tb2a] {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: min-content min-content min-content auto 40px;
    grid-gap: 5px;
    height: calc(100vh - 60px);
    width: 100%;
    padding: 6px;
    border-radius: 12px;
    background-color: white;
    margin: 5px 5px 5px 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12), /* main soft shadow */ 0 2px 6px rgba(0, 0, 0, 0.08); /* smaller detail shadow */

}

.subs__list[b-0dm1t4tb2a] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    height: 100%;
}

.sub[b-0dm1t4tb2a] {
    margin: 0;
}

.sub-box[b-0dm1t4tb2a] {
    display: grid;
    grid-template-columns: 62px auto 50px;
    grid-template-rows: 45% 55%;
    border-radius: 7px;
    padding: 5px 10px 5px 8px;
}

.sub-icon[b-0dm1t4tb2a] {
    margin-top: 5px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: gray;
    color: white;
    text-align: center;
}

.sub-phone[b-0dm1t4tb2a] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: bold;
    padding-top: 11px;
}

.sub-unread[b-0dm1t4tb2a] {
    font-weight: bold;
}

.sub-message[b-0dm1t4tb2a] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: small;
    width: 100%;
    padding-left: 1px;
    padding-bottom: 10px;
}

.sub-date[b-0dm1t4tb2a] {
    padding: 9px 0 10px 0;
    font-size: smaller;
    text-align: right;
}

.sub-selected[b-0dm1t4tb2a] {
    border: 0;
    background-color: dodgerblue;
    color: white;
}

.msgs[b-0dm1t4tb2a] {
    display: grid;
    grid-template-rows: 55px auto 50px;
    overflow-y: hidden;
    height: 100%;
    width: 100%;
    padding-left: 15px;
}

.files[b-0dm1t4tb2a] {
    overflow-y: scroll;
    display: flex;
    flex-direction: row;
    gap: 5px;
    padding: 5px;
    width: 100%;
}

.file[b-0dm1t4tb2a] {
    border-radius: 4px;
    padding: 4px 10px;
    width: 240px;
    border: 1px solid gray;
}

.file .time_date[b-0dm1t4tb2a] {
    color: #747474;
    display: block;
    font-size: 10px;
    text-align: right;
}

.msgs__box[b-0dm1t4tb2a] {
    overflow-y: scroll;
    display: flex;
    flex-direction: column-reverse;
    gap: 5px;
    padding: 20px;
    height: calc(100vh - 170px);
}

.msg[b-0dm1t4tb2a] {
    width: 100%;
}

.msg-status[b-0dm1t4tb2a] {
    color: #747474;
    display: block;
    font-size: 10px;
    text-align: right;
}

.msg-date[b-0dm1t4tb2a] {
    color: #747474;
    font-size: smaller;
    text-align: center;
    border-radius: 15px;
    padding: 4px 10px;
    font-weight: bold;
}

.msg-reply[b-0dm1t4tb2a] {
    padding: 8px 14px 8px 14px;
}

.msg-reply input[type='text'][b-0dm1t4tb2a] {
    border: 0;
}

.msg-send[b-0dm1t4tb2a] {
    border-radius: 15px;
    padding: 6px 10px;
    max-width: 80%;
    color: white;
    background: dodgerblue;
    float: right;
}

.msg-recv[b-0dm1t4tb2a] {
    border-radius: 15px;
    padding: 6px 10px;
    max-width: 80%;
    background: white;
    float: left;
}

.msg-failed[b-0dm1t4tb2a] {
    background-color: #ff9999;
}

