/* Notepad Window Styles */

.notepad-body {
    display: flex;
    flex-direction: column;
    padding: 2px;
    flex: 1;
    min-height: 0;
}

#notepad-textarea {
    flex: 1;
    min-height: 0;
    width: 100%;
    resize: none;
    border: none;
    outline: none;
    font-family: var(--font-family);
    font-size: 16px;
    padding: 5px;
}

.notepad-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    background-color: var(--win98-gray);
    border-top: 1px solid var(--win98-white);
}

.notepad-footer fieldset {
    display: flex;
    align-items: center;
    padding: 0 5px;
    margin: 0;
}

.notepad-footer label {
    margin-right: 5px;
}
