﻿#logWindow {
    border: 1px solid silver;
    background-color: white;
    border-radius: 2px;
    box-shadow: 4px 4px 4px lightgray;
    width: 30%;
    height: calc(100% - 128px);
    position: fixed;
    right: 32px;
    bottom: 66px;
    z-index: 1000;
}

.logheader {
    height: 32px;
    border-bottom: 1px solid silver;
    margin: 8px;
}

#logContent {
    margin: 8px;
    font-size: 12px;
    line-height: 14px;
    overflow: auto;
    position: relative;
    bottom: 0;
    height: calc(100% - 54px);
}

    #logContent > p {
        margin-bottom: 2px;
    }