body {
    margin: 0;
    background: #ebeef1;
}

.container {
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
}

.footer {
    padding: .5em 0;
    text-align: center;
    font-size: 14px;
    font-family: sans-serif;
}

#content {
    margin: 0;
    padding: 20px;
    overflow-y: auto;
    resize: none;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: 1px solid #ddd;
    outline: none;
    border-radius: 1rem;
    line-height: 1.3;
    font-size: 1rem;
}

#printable {
    display: none;
}

@media (prefers-color-scheme: dark) {
    body {
        background: #333b4d;
        color: #fff;
    }

    #content {
        background: #24262b;
        color: #fff;
        border-color: #495265;
    }
}

@media print {
    .container {
        display: none;
    }

    #printable {
        display: block;
        white-space: pre-wrap;
        word-break: break-word;
    }
}