.virtual-log-container {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.virtual-log-container .virtual-log {
    flex: 1;
    overflow-y: auto;
    position: relative;
    height: 100%;
    font-family: monospace;
}

.virtual-log-container .scroll-spacer {
    position: relative;
}

.virtual-log-container .visible-rows {
    position: absolute;
    left: 0;
    right: 0;
}

.virtual-log-container .virtual-log .log-entry {
    display: flex;
    gap: 12px;
    line-height: 1.5;
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
}

.virtual-log-container .virtual-log .log-entry.INFO {
    color: blue;
}

.virtual-log-container .virtual-log .log-entry.WARN {
    color: orange;
}

.virtual-log-container .virtual-log .log-entry.ERROR {
    color: var(--bs-danger);
}

.virtual-log-container .virtual-log .log-entry .message {
    white-space: preserve nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.virtual-log-container .jump-to-bottom {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.virtual-log-container .badge-new {
    background-color: #5cb85c;
}

.virtual-log-container .loglevel-filter .chip {
    padding: 3px;
    border: 1px solid #adadad;
    border-radius: 4px;
    margin-right: 4px;
}

.virtual-log-container .loglevel-filter .chip.ERROR {
    color: red;
    border-color: red;
}

.virtual-log-container .loglevel-filter .chip.WARN {
    color: orange;
    border-color: orange;
}

.virtual-log-container .loglevel-filter .chip.INFO {
    color: blue;
    border-color: blue;
}
