html, body {
    height: 100%;
}

app {
    display: block;
    height: 100%;
}

.header-logo {
    flex-shrink: 0;
    background-color: transparent;
    background-image: url(../images/logo.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 180px;
    height: 27px;
}

/*.header-logo {
    flex-shrink: 0;
    background-color: currentColor;
    -webkit-mask: url('../images/Logo.png');
    mask: url('../images/Logo.png');
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    width: 180px;
    height: 27px;
}*/

#blazor-error-ui {
    background: inherit;
    bottom: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100001;
}

.chat-window {
    background-color: rgba(191, 191, 191, 0.15);
    border-radius: 5px;
    max-height: 600px;
    padding: 10px;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

    /* width */
    .chat-window::-webkit-scrollbar {
        width: 10px;
    }

    /* Track */
    .chat-window::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 5px;
    }

    /* Handle */
    .chat-window::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 5px;
    }

        /* Handle on hover */
        .chat-window::-webkit-scrollbar-thumb:hover {
            background: #555;
        }


.chat-window-empty {
    background-color: rgba(191, 191, 191, 0.15);
    border-radius: 5px;
    height: 100px;
    padding: 10px;
    width: 100%;
}

.message {
    /*    height: 100px;*/
    background-color: inherit;
    display: inline-block;
    width: 99%;
    border-radius: 5px;
    margin: 5px;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    background-color: var(--bs-body-bg);
    overflow-x: auto;
    overflow-y: hidden;
}

/* width */
    .message::-webkit-scrollbar {
        width: 10px;
    }

/* Track */
    .message::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 5px;
    }

/* Handle */
    .message::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 5px;
    }

    /* Handle on hover */
        .message::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

.emptyUserImageContainer {
    width: 40px;
    height: 40px;
    background-color: var(--bs-gray);
    margin-right: 10px;
    /*    margin-top: 0.5rem;
    margin-bottom: 0.5rem;*/
}

.emptyUserImage {
    background-color: currentColor;
    -webkit-mask: url('../IImageService/Security_UserLogo');
    mask: url('../IImageService/Security_UserLogo');
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    height: 24px;
    width: 24px;
    mask-size: 24px;
    -webkit-mask-size: 24px;
}

.name {
    font-weight: bold;
}

.date {
    opacity: 0.5;
}

.photo {
    float: left;
    height: 100%;
}

    .photo > img {
        height: 40px;
        width: 40px;
        display: block;
        border-radius: 40px;
        margin-right: 10px;
        object-fit: cover;
        object-position: top;
    }

.mention {
    color: var(--bs-primary);
}

.dxbl-loading-panel-attached {
    display: none !important;
}
