/* Notepad Style Viewer */
.app-notepad {
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Courier New', monospace;
}

.notepad-content {
    flex: 1;
    padding: 10px;
    overflow: auto;
    background: #fff;
}

.notepad-content pre {
    margin: 0;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.5;
    color: #000;
    white-space: pre-wrap;
    word-wrap: break-word;
}
