/* Windows 95 Notepad Styles */

.notepad .window-body {
  padding: 0 !important;
  margin: 8px !important;
  display: flex;
  flex-direction: column;
  height: calc(100% - 46px);
  overflow: hidden !important;
}

/* Notepad Menu Bar */
.notepad-menubar {
  background: #c0c0c0;
  border-bottom: 1px solid #808080;
  padding: 2px 5px;
  font-size: 11px;
  font-family: "MS Sans Serif", sans-serif;
  display: flex;
  gap: 10px;
}

.notepad-menubar .menu-item {
  padding: 2px 8px;
  cursor: url('../img/cursor.png'), auto;
}

.notepad-menubar .menu-item:hover {
  background: #000080;
  color: white;
}

/* Notepad Textarea */
.notepad-textarea {
  flex: 1;
  width: 100%;
  border: none;
  padding: 4px;
  margin: 0;
  font-family: "Courier New", Courier, monospace;
  font-size: 13px;
  line-height: 1.3;
  background: white;
  color: black;
  resize: none;
  box-sizing: border-box;
  overflow-y: scroll;
  overflow-x: auto;
  white-space: pre;
  word-wrap: normal;
  cursor: url('../img/cursor.png'), auto;
}

.notepad-textarea:focus {
  outline: none;
}

/* Scrollbar styling for notepad */
.notepad-textarea::-webkit-scrollbar {
  width: 16px;
  height: 16px;
}

.notepad-textarea::-webkit-scrollbar-corner {
  background: #dfdfdf;
}

.notepad-textarea::-webkit-scrollbar-track {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='2' height='2' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1 0H0v1h1v1h1V1H1V0z' fill='silver'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2 0H1v1H0v1h1V1h1V0z' fill='%23fff'/%3E%3C/svg%3E");
}

.notepad-textarea::-webkit-scrollbar-thumb {
  background-color: #dfdfdf;
  box-shadow: inset -1px -1px #0a0a0a, inset 1px 1px #fff, inset -2px -2px grey, inset 2px 2px #dfdfdf;
}

/* Adjust notepad window size */
.window.notepad {
  min-width: 400px;
  min-height: 300px;
}

.window.notepad .title-bar-text {
  font-family: "MS Sans Serif", sans-serif;
}
