@font-face {
  font-family: 'RL Print';
  src: url('/fonts/rl-print.ttf') format('truetype');
}


/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #1e1e1e #f7ffc8;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 12px;
}

*::-webkit-scrollbar-track {
  background: #f7ffc8;
}

*::-webkit-scrollbar-thumb {
  background-color: #06f442;
  border-radius: 0px;
  border: 0px solid #ffffff;
}

html {
  background-image: url("https://textures.neocities.org/thumbnails/wood/thumb_N028.jpg");
  background-size: auto 128px;
  background-repeat: repeat;
  background-color: #000000;
  color: #1e1e1e;
  font-family: 'RL Print', monospace;
  font-size: 20px;
  cursor: url("/images/pencil.png"), auto;
  margin-left: 150px;
  margin-right: 20px;
}

/* ========== MOVED CSS FROM HTML ========== */

input[type="text"] {
  width: 200px;
  box-sizing: border-box;
  border: solid;
  border-width: 1px;
  background-color: #000000;
  color: #00ff04;
}

::placeholder {
  color: #00ff04;
  opacity: 1; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12 -18 */
  color: #00ff04;
}
.navbar {
  background-image: url("https://textures.neocities.org/thumbnails/paper-and-sponge/thumb_PAPER01.jpg");
  color: #f70217;
  border-style: solid;
  border-width: 5px;
  border-color: #000000;
  border-radius: 10px;
  z-index: 5;
  position: fixed;
  height: auto;
  left: 0;
  top: 0;
  overflow: hidden;
}
.logo {
  z-index: 10;
  position: fixed;
  left: 110px;
  top: 0;
}
.todaysthemeicon {
  min-height: 50px;
  max-height: 50px;
  min-width: 100px;
  max-width: 100px;
  background-image: url("/dynamicstyles/space.png");
  background-size: cover;
}
.beatstime {
  min-height: 30px;
  max-height: 30px;
  min-width: 100px;
  max-width: 100px;
  background-color: #ffffff;
  font-size: 15px;
  color: #ffffff;
  background-image: url("/images/beatstime.png");
  background-size: cover;
}
.notebook {
  position: absolute;
  left: 180px;
  top: 0px;
}
.artwork {
  position: absolute;
  min-height: 600px;
  max-height: 600px;
  min-width: 580px;
  max-width: 580px;
  left: 320px;
  top: 100px;
  overflow-y: auto;
  overflow-x: hidden;
}


/* Draggable Frame */
#draggableFrame {
  position: fixed;
  top: 6px;
  left: 120px;
  width: 210px;
  height: 330px;
  background: rgba(255, 255, 255, 0.8);
  border-image: linear-gradient(to bottom, #b7cfe8, #9bb7d3) 1;
  border-radius: 6px;
  border-width: 4px;
  border-style: solid;
  border-top: none;
  cursor: grab;
  z-index: 1000;
  user-select: none; /* Prevent text selection */
  display: flex;
  flex-direction: column;
}

/* Drag Handle */
#dragHandle {
  width: 100%;
  height: 20px;
  background-image: url("/backgrounds/win7gradient.png");
  color: #000000;
  text-align: left;
  font-size: 14px;
  line-height: 20px;
  cursor: grab;
  padding: 2px;
}

/* Make sure the iframe fits inside */
#draggableFrame iframe {
  width: 100%;
  height: calc(100% - 20px); /* Subtract handle height */
  border: none;
}

/* Prevent selection of other page elements */
body, html {
  user-select: none;
}