#window-notepad {
    background-color: var(--win-gray) !important;
    width: 600px !important;
    height: 450px !important;
}

#window-notepad .window-body {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: var(--win-gray);
    overflow: hidden;
    border: 0px;
}

.notepad-toolbar {
    display: flex;
    gap: 4px;
    padding: 6px;
    border-bottom: 1px solid var(--border-light);
    border-top: 1px solid var(--border-light);
    flex-shrink: 0;
    background-color: var(--win-gray);
}

.notepad-btn {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: var(--system-font);
    font-size: 14px;
    
    background-color: var(--win-gray);
    border-top: 2px solid var(--win-white);
    border-left: 2px solid var(--win-white);
    border-right: 2px solid var(--border-dark);
    border-bottom: 2px solid var(--border-dark);
    cursor: pointer;
}

.notepad-btn:active {
    border-top: 2px solid var(--border-dark);
    border-left: 2px solid var(--border-dark);
    border-right: 2px solid var(--win-white);
    border-bottom: 2px solid var(--win-white);
    padding: 2px 0 0 2px;
}

.notepad-btn:hover { background-color: var(--win-gray); }

.notepad-separator {
    width: 2px;
    height: 22px;
    border-left: 1px solid var(--border-dark);
    border-right: 1px solid var(--win-white);
    margin: 0 4px;
    align-self: center;
}

.notepad-editor {
    flex-grow: 1;
    background-color: #fff;
    color: #000;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    padding: 8px;
    outline: none;
    cursor: text;
    white-space: pre-wrap;
    
    overflow-y: auto; 
    
    border-top: 2px solid var(--border-dark);
    border-left: 2px solid var(--border-dark);
    border-right: 2px solid var(--win-white);
    border-bottom: 2px solid var(--win-white);
    
    margin: 4px;
}

.notepad-editor::-webkit-scrollbar {
    width: 16px;
    height: 16px;
    background: var(--win-gray);
}

.notepad-editor::-webkit-scrollbar-corner {
    background: var(--win-gray);
}

.notepad-editor::-webkit-scrollbar-track {
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg width='2' height='2' viewBox='0 0 2 2' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='1' height='1' fill='%23c0c0c0'/%3E%3Crect x='1' y='1' width='1' height='1' fill='%23c0c0c0'/%3E%3C/svg%3E");
}

.notepad-editor::-webkit-scrollbar-thumb {
    background-color: var(--win-gray);
    border-top: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    border-right: 1px solid #000000;
    border-bottom: 1px solid #000000;
    box-shadow: inset -1px -1px 0 #808080, inset 1px 1px 0 #dfdfdf;
}

.notepad-editor::-webkit-scrollbar-thumb:active {
    background-color: var(--win-gray);
}

.notepad-editor::-webkit-scrollbar-button {
    display: block;
    height: 16px;
    width: 16px;
    background-color: var(--win-gray);
    border-top: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    border-right: 1px solid #000000;
    border-bottom: 1px solid #000000;
    box-shadow: inset -1px -1px 0 #808080, inset 1px 1px 0 #dfdfdf;
    background-position: center;
    background-repeat: no-repeat;
}

.notepad-editor::-webkit-scrollbar-button:active {
    border-top: 1px solid #000000;
    border-left: 1px solid #000000;
    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    box-shadow: none;
    background-position: calc(50% + 1px) calc(50% + 1px);
}

.notepad-editor::-webkit-scrollbar-button:vertical:decrement {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 5 L5 8 L11 8 Z' fill='black'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
}

.notepad-editor::-webkit-scrollbar-button:vertical:increment {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 11 L5 8 L11 8 Z' fill='black'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
}

.notepad-editor::-webkit-scrollbar-button:vertical:decrement:end,
.notepad-editor::-webkit-scrollbar-button:vertical:increment:start {
    display: none;
}