/* core/notepad.css — Notepad window component */

.notepad-wrapper { display: flex; flex-direction: column; background: #ece9d8; height: 100%; overflow: hidden; }
.notepad-menubar { height: 19px; background: #ece9d8; border-bottom: 1px solid #ffffff; display: flex; align-items: center; padding: 0 4px; flex-shrink: 0; cursor: default; user-select: none; }
.notepad-menu-item {
    font-family: 'Tahoma', sans-serif;
    font-size: 11px;
    margin-right: 12px;
    color: #a29f90; /* XP Disabled Text Color */
    cursor: default;
    user-select: none;
}
.notepad-menu-item:first-letter { text-decoration: underline; }
.notepad-body { flex: 1; display: flex; overflow: hidden; }
.notepad-scroller {
    flex: 1; overflow: scroll; padding: 4px; background: white;
    border-top: 1px solid #7f9db9; border-left: 1px solid #7f9db9;
    border-right: 1px solid #dcdad5; border-bottom: 1px solid #dcdad5;
}
.notepad-textarea {
    font-family: 'Lucida Console', 'Consolas', monospace;
    font-size: 14px; color: black; white-space: pre-wrap;
    outline: none; user-select: text; -webkit-user-select: text;
}
