@import "chat.css";

html, body {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
}

app {
    display: block;
    height: 100%;
}

.header-logo {
    flex-shrink: 0;
    background-color: currentColor;
    -webkit-mask: url('../images/Logo.svg');
    mask: url('../images/Logo.svg');
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    width: 180px;
    height: 24px;
}

#blazor-error-ui {
    background: inherit;
    bottom: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100001;
}

.h-100vh {
    height: calc(100vh - 3.1rem);
}

h3, .fw-800 {
    font-weight: 800;
}

.collapse-toggle .main {
    padding-left: 0;
}

.main-content {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.w-20 {
    width: 20%;
}

.w-60 {
    width: 60%;
}

.pointer {
    cursor: pointer;
}

.dxbl-window-dialog {
    border-radius: 1rem !important;
    border: 1px solid rgba(0,0,0,0.25) !important;
}

.dxbl-popup-resizable-content {
    border-radius: 1rem !important;
}

.dxbl-modal-content {
    box-shadow: 0px 5px 5px rgba(0,0,0,0.4);
    border: 0px !important;
    border-radius: 0.5rem;
}

.dxbl-modal-header {
    background-color: var(--bs-primary) !important;
    color: white !important;
}

@media (max-width: 767px) {
    .modal-backdrop {
        display: none;
    }
}

.word-break-all {
    word-break: break-all;
}

.fit-content {
    width: fit-content;
}

.sidebar {
    z-index: 1;
}

.line-through {
    text-decoration: line-through;
    opacity: 0.75;
}

.card-footer:last-child {
    border-radius: 0 0 1rem 1rem;
}

hr{
    opacity: 0.1;
}