<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.hl-dialog-overlay {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

.hl-dialog-main {
    max-height: 68vh;
    overflow-y: auto;
}

.dialog-fade-enter-active,
.dialog-fade-leave-active {
    transition: opacity 0.5s;
}
.dialog-fade-enter,
.dialog-fade-leave-to {
    opacity: 0;
}
</pre></body></html>