/*! Minimalist Web Notepad | Dark Theme + JetBrains Mono */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap');

body {
    margin: 0;
    background: #1a1a1a;
}
.container {
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
}
#content {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    overflow-y: auto;
    resize: none;
    width: 100%;
    height: 100%;
    min-height: 100%;
    box-sizing: border-box;
    border: 1px #333 solid;
    border-radius: 8px;
    outline: none;
    background: #0d0d0d;
    color: #e0e0e0;
}
#content:focus {
    border-color: #444;
}
#content::placeholder {
    color: #555;
}
#printable {
    display: none;
}

@media print {
    .container {
        display: none;
    }
    #printable {
        display: block;
        white-space: pre-wrap;
        word-break: break-word;
    }
}
