/*
 * Styling the HtmlView widget
 */
.htmlview-widget {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: 1fr auto;
    box-sizing: border-box;
    border: 1px solid #aaa;
    border-radius: 3px;
    background: #fff;
    overflow: hidden;
    min-height: 40px;
    min-width: 60px;
}

/* Inner content area */
.htmlview-content {
    grid-row: 1;
    grid-column: 1;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 14px;
    padding: 4px;
    overflow: auto;
    /* hide native scrollbars; we use ScrollBar widgets */
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.htmlview-content::-webkit-scrollbar {
    display: none;
}

/* Scrollbar placement */
.htmlview-vbar {
    grid-row: 1;
    grid-column: 2;
}
.htmlview-hbar {
    grid-row: 2;
    grid-column: 1;
}
.htmlview-corner {
    grid-row: 2;
    grid-column: 2;
    background: #f4f4f4;
}
