/* css/notepad.css - Windows 98 Notepad */

/* Notepad Chrome */
.notepad-chrome {
  background: #c0c0c0;
  border-bottom: 1px solid #808080;
}

/* Menu Bar */
.notepad-menubar {
  height: 18px;
  display: flex;
  align-items: center;
  padding: 0 4px;
  background: #c0c0c0;
  font-size: 11px;
  border-bottom: 1px solid #fff;
}

.notepad-menu-item {
  padding: 2px 8px;
  cursor: pointer;
}

.notepad-menu-item:hover {
  background: #000080;
  color: #fff;
}

/* Notepad Content */
.notepad-content {
  height: calc(100% - 18px - 18px);
  background: #fff;
  border: 1px solid #808080;
  margin: 2px;
  overflow: hidden;
}

.notepad-textarea {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  padding: 4px;
  font-family: "Courier New", Courier, monospace;
  font-size: 12px;
  background: #fff;
  color: #000;
  resize: none;
  white-space: pre-wrap;
  overflow-y: auto;
}

/* Scrollbar for notepad */
.notepad-textarea::-webkit-scrollbar {
  width: 16px;
  height: 16px;
}

.notepad-textarea::-webkit-scrollbar-track {
  background: #c0c0c0;
}

.notepad-textarea::-webkit-scrollbar-thumb {
  background: #c0c0c0;
  border: 1px solid #000;
}

.notepad-textarea::-webkit-scrollbar-button {
  background: #c0c0c0;
  border: 1px solid #000;
  height: 16px;
  width: 16px;
}