:root {
    --row-h: 30px;
    --toolbar-h: 30px;
}

.watcher-block {
    width: 100%;
    height: 100%;
}

.watcher-block .sitelist {
    height: calc(100% - var(--toolbar-h) - 45px);
    width: calc(100% - 30px);

    display: flex;
    flex-direction: column;

    background-color: #3d3d3d;

    border: 1px solid black;
    
    margin: 15px;
    overflow: auto;
    
    box-sizing: border-box;
}

.watcher-block .row.header {
    background-color: #0d0d0d;
    font-weight: bold;
}

.watcher-block .sitelist .row {
    height: var(--row-h);
    width: 100%;

    display: flex;
    flex-direction: row;
}

.watcher-block .sitelist .row:nth-child(even) {
    background-color: #eee !important;
    color: black;
}

.watcher-block .sitelist .row > * {
    display: flex;
    justify-content: center;
    align-items: center;
    
    width: 150px;
    flex: 1;
}

.watcher-block .sitelist .row.error {
    background-color: red !important;
}

.watcher-block .toolbar {
    height: var(--toolbar-h);
    
    margin: 0px 15px;
}
