/**
 * 98.css
 * Copyright (c) 2020 Jordan Scales <thatjdanisso.cool>
 * https://github.com/jdan/98.css/blob/master/LICENSE
 */

:root {
  --surface: #c0c0c0;
  --button-highlight: #ffffff;
  --button-face: #fdcfe9;
  --button-shadow: #808080;
  --window-frame: #0a0a0a;
  --dialog-blue: #000080;
  --dialog-blue-light: #1084d0;
  --link-blue: #0000ff;

  /* Spacing */
  --element-spacing: 8px;
  --grouped-button-spacing: 4px;
  --grouped-element-spacing: 6px;
  --radio-width: 12px;
  --checkbox-width: 13px;
  --radio-label-spacing: 6px;

  /* Some detailed computations for radio buttons and checkboxes */
  --radio-total-width-precalc: 12px + 6px;
  --radio-total-width: 18px;
  --radio-left: -6px;
  --radio-dot-width: 4px;
  --radio-dot-top: 4px;
  --radio-dot-left: -14px;

  --checkbox-total-width-precalc: 13px +
    6px;
  --checkbox-total-width: 19px;
  --checkbox-left: -7px;
  --checkmark-width: 7px;
  --checkmark-top: 3px;
  --checkmark-left: 3px;

  /* Borders */
  --border-width: 1px;
  --border-raised-outer: inset -1px -1px #0a0a0a,
    inset 1px 1px #ffffff;
  --border-raised-inner: inset -2px -2px #808080,
    inset 2px 2px #dfdfdf;
  --border-sunken-outer: inset -1px -1px #ffffff,
    inset 1px 1px #0a0a0a;
  --border-sunken-inner: inset -2px -2px #dfdfdf,
    inset 2px 2px #808080;

  /* Field borders (checkbox, input, etc) flip window-frame and button-shadow */
  --border-field: inset -1px -1px #ffffff,
    inset 1px 1px #808080, inset -2px -2px #dfdfdf,
    inset 2px 2px #0a0a0a;
}

@font-face {
  font-family: "MS PGothic";

}

body {
  font-family: "MS PGothic";
  font-size: 14px;
  color: #222222;
  letter-spacing: 0.7px;
  line-height: 1.3;
 user-select: none;

overflow-y: scroll;
overflow-x: hidden;
}

button,
label,
input,
textarea,
select,
option,
ul.tree-view,
.window,
.title-bar {
  font-family: "MS PGothic";
  -webkit-font-smoothing: none;
  font-size: 11px;
letter-spacing: 1px;
}

h1 {
  font-size: 5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}
h5 {
font-size: 10px;
    display: flex;
    align-items:center;
  font-weight: bold;
  color: #440c20;
  letter-spacing: 0;
  margin-right: 24px;
}

u {
  text-decoration: none;
  border-bottom: 0.5px solid #222222;
}

button {
  box-sizing: border-box;
  border: none;
  background-color: #ffcfe7;
  box-shadow: inset -1px -1px #32001E,
    inset 1px 1px #F8CCE7, inset -2px -2px #A26F88,
    inset 2px 2px #FFE2F4;
  border-radius: 0;

  min-width: 75px;
  min-height: 23px;
  padding: 0 12px;
}

buttonaa {
  box-sizing: border-box;
  border: none;
  background: #c0c0c0;
  box-shadow: inset -1px -1px #632846,
    inset 1px 1px #F4CDE5, inset -2px -2px #A26F88,
    inset 2px 2px #FCD9F0;
  border-radius: 0;

  width: 1000px;
  height: 1000px;
  padding: 0 12px;
}

button:not(:disabled):active {
  box-shadow: inset -1px -1px #ffffff,
    inset 1px 1px #0a0a0a, inset -2px -2px #dfdfdf,
    inset 2px 2px #808080;
}

button:focus {
 
  outline-offset: -4px;
}

:disabled {
  color: #808080;
  text-shadow: 1px 1px 0 #ffffff;
}

:disabled + label {
  color: #808080;
  text-shadow: 1px 1px 0 #ffffff;
}

.draggable-window {
  box-shadow: inset -1px -1px #D28EB3,
    inset 1px 1px #FFE5F5, inset -2px -2px #FEBCE5,
    inset 2px 2px #FFE0F4;
background: linear-gradient(180deg, hsla(321, 86%, 92%, 1) 1%, hsla(321, 100%, 96%, 1) 50%, hsla(321, 86%, 92%, 1) 100%);
  padding: 3px;
}


.otherwindow {
  box-shadow: inset -1px -1px #D28EB3,
    inset 1px 1px #FFE5F5, inset -2px -2px #FEBCE5,
    inset 2px 2px #FFE0F4;
background: #FCD7EF;

  padding: 3px;
}

.textboxi {
  box-shadow: inset -1px -1px #FFE5F5,
    inset 1px 1px #6B5162, inset -2px -2px #ffcfe7,
    inset 2px 2px #BDB7BA;
  background: #FCD7EF;
  padding: 3px;
  float: right;
  border-radius: 5px 5px 5px 5px;
  font-size:15px;
}
.title-bar {
background: linear-gradient(180deg, hsla(214, 100%, 23%, 1) 0%, hsla(214, 69%, 37%, 1) 50%, hsla(214, 100%, 23%, 1) 100%);


  padding: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title-bar-text {

  color: white;

  margin-right: 24px;
font-family: "MS PGothic";
}

.title-bar-controls {
  display: flex;
}

.title-bar-controls button {
  padding: 0;
  display: block;
  min-width: 14px;
  min-height: 12px;
}

.title-bar-controls button:focus {
  outline: none;
}

.title-bar-controls button[aria-label="Minimize"] {
  background-image: url("https://file.garden/aCFGJWmMqiDpAecA/image_2025-06-13_211920878.png");
  background-repeat: no-repeat;
background-size: contain;
  background-color:#fdcfe9;
}

.title-bar-controls button[aria-label="Maximize"] {
  background-image: url("https://file.garden/aCFGJWmMqiDpAecA/image_2025-06-13_212329995.png");
  background-repeat: no-repeat;
  background-position: top 2px left 3px;
background-size: contain;
 
  background-color:#fdcfe9;
}

.title-bar-controls button[aria-label="Close"] {

  background-image: url("https://file.garden/aCFGJWmMqiDpAecA/close.png");
  background-repeat: no-repeat;
  background-position: top 2px left 3px;
  background-color:#fdcfe9;
  border-color:#fdcfe9;


}

.window-body {
  margin: 8px;
}

fieldset {
  
  border: none;
  box-shadow: inset -1px -1px #D28EB3,
    inset 1px 1px #FFE5F5, inset -2px -2px #FEBCE5,
    inset 2px 2px #FFE0F4;
  padding: 10px;
  padding-block-start: 8px;
  margin: 0;
background: linear-gradient(180deg, hsla(327, 100%, 94%, 1) 0%, hsla(328, 91%, 83%, 1) 100%);

}

legend {
  background: #ffcfe7;
}

.field-row {
  display: flex;
  align-items: center;
}

[class^="field-row"] + [class^="field-row"] {
  margin-top: 6px;
}

.field-row * + * {
  margin-left: 6px;
}

.field-row-stacked {
  display: flex;
  flex-direction: column;
}

.field-row-stacked * + * {
  margin-top: 6px;
}

label {
  display: inline-flex;
  align-items: center;
}

input[type="radio"],
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
  border: none;
}

input[type="radio"] + label,
input[type="checkbox"] + label {
  line-height: 13px;
}

input[type="radio"] + label {
  position: relative;
  margin-left: 18px;
}

input[type="radio"] + label::before {
  content: "";
  position: absolute;
  top: 0;
  left: -18px;
  display: inline-block;
  width: 12px;<body>

  height: 12px;
  margin-right: 6px;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 0H4V1H2V2H1V4H0V8H1V10H2V8H1V4H2V2H4V1H8V2H10V1H8V0Z' fill='%23808080'/%3E %3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 1H4V2H2V3V4H1V8H2V9H3V8H2V4H3V3H4V2H8V3H10V2H8V1Z' fill='black'/%3E %3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 3H10V4H9V3ZM10 8V4H11V8H10ZM8 10V9H9V8H10V9V10H8ZM4 10V11H8V10H4ZM4 10V9H2V10H4Z' fill='%23DFDFDF'/%3E %3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 2H10V4H11V8H10V10H8V11H4V10H2V11H4V12H8V11H10V10H11V8H12V4H11V2Z' fill='white'/%3E %3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 2H8V3H9V4H10V8H9V9H8V10H4V9H3V8H2V4H3V3H4V2Z' fill='white'/%3E %3C/svg%3E");
}

input[type="radio"]:checked + label::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  top: 4px;
  left: -14px;
  position: absolute;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg width='4' height='4' viewBox='0 0 4 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3 0H1V1H0V2V3H1V4H3V3H4V2V1H3V0Z' fill='black'/%3E %3C/svg%3E");
}

input[type="radio"]:focus + label,
input[type="checkbox"]:focus + label {
  outline: 1px dotted #000000;
}

input[type="radio"][disabled] + label::before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 0H4V1H2V2H1V4H0V8H1V10H2V8H1V4H2V2H4V1H8V2H10V1H8V0Z' fill='%23808080'/%3E %3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 1H4V2H2V3V4H1V8H2V9H3V8H2V4H3V3H4V2H8V3H10V2H8V1Z' fill='black'/%3E %3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 3H10V4H9V3ZM10 8V4H11V8H10ZM8 10V9H9V8H10V9V10H8ZM4 10V11H8V10H4ZM4 10V9H2V10H4Z' fill='%23DFDFDF'/%3E %3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 2H10V4H11V8H10V10H8V11H4V10H2V11H4V12H8V11H10V10H11V8H12V4H11V2Z' fill='white'/%3E %3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 2H8V3H9V4H10V8H9V9H8V10H4V9H3V8H2V4H3V3H4V2Z' fill='%23C0C0C0'/%3E %3C/svg%3E");
}

input[type="radio"][disabled]:checked + label::after {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg width='4' height='4' viewBox='0 0 4 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3 0H1V1H0V2V3H1V4H3V3H4V2V1H3V0Z' fill='%23808080'/%3E %3C/svg%3E");
}

input[type="checkbox"] + label {
  position: relative;
  margin-left: 19px;
}

input[type="checkbox"] + label::before {
  content: "";
  position: absolute;
  left: -19px;
  display: inline-block;
  width: 13px;
  height: 13px;
  background: #ffffff;
  box-shadow: inset -1px -1px #ffffff,
    inset 1px 1px #808080, inset -2px -2px #dfdfdf,
    inset 2px 2px #0a0a0a;
  margin-right: 6px;
}

input[type="checkbox"]:checked + label::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  position: absolute;
  top: 3px;
  left: -16px;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg width='7' height='7' viewBox='0 0 7 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7 0H6V1H5V2H4V3H3V4H2V3H1V2H0V5H1V6H2V7H3V6H4V5H5V4H6V3H7V0Z' fill='black'/%3E %3C/svg%3E");
}

input[type="checkbox"][disabled] + label::before {
  background: #c0c0c0;
}

input[type="checkbox"][disabled]:checked + label::after {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg width='7' height='7' viewBox='0 0 7 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7 0H6V1H5V2H4V3H3V4H2V3H1V2H0V5H1V6H2V7H3V6H4V5H5V4H6V3H7V0Z' fill='%23808080'/%3E %3C/svg%3E");
}

input[type="text"] {
  padding: 3px 4px;
  border: none;
  box-shadow: inset -1px -1px #ffffff,
    inset 1px 1px #808080, inset -2px -2px #dfdfdf,
    inset 2px 2px #0a0a0a;
  background-color: #ffffff;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

select {
  padding: 3px 4px;
  border: none;
  box-shadow: inset -1px -1px #ffffff,
    inset 1px 1px #808080, inset -2px -2px #dfdfdf,
    inset 2px 2px #0a0a0a;
  background-color: #ffffff;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

textarea {
  padding: 3px 4px;
  border: none;
  box-shadow: inset -1px -1px #ffffff,
    inset 1px 1px #808080, inset -2px -2px #dfdfdf,
    inset 2px 2px #0a0a0a;
  background-color: #ffffff;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

input[type="text"],
select {
  height: 21px;
}

input[type="text"] {
  /* For some reason descenders are getting cut off without this */
  line-height: 2;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  padding-right: 32px;
  background-image: url("https://64.media.tumblr.com/e8c15648c4bfeaf76efa683d88c50022/f65a07b6a40b1977-97/s75x75_c1/a2f87e03918a04a2eb8937699d7ce87fe8ac6175.pnj");
  background-position: top 2px right 2px;
  background-repeat: no-repeat;
  border-radius: 0;
}

select:focus,
input[type="text"]:focus,
textarea:focus {
  outline: none;
}

select:focus {
  color: #ffffff;
  background-color: #000080;
}
select:focus option {
  color: #000;
  background-color: #fff;
}

select:active {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 0H15H16V17H15H0V16V1V0ZM1 16H15V1H1V16Z' fill='%23808080'/%3E %3Crect x='1' y='1' width='14' height='15' fill='%23C0C0C0'/%3E %3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 7H5V8H6V9H7V10H8V11H9V10H10V9H11V8H12V7Z' fill='black'/%3E %3C/svg%3E");
}

a {
  color: #0000ff;
}

a:focus {
  outline: 1px dotted #0000ff;
}

ul.tree-view {
  display: block;
  background-image: url('images/eggs.jpeg');
  box-shadow: inset -1px -1px #ffffff,
    inset 1px 1px #FEBCE5, inset -2px -2px #FEBCE5,
    inset 2px 2px #D28EB3;
  padding: 6px;
  margin: 0;
background-size: 50%;
}


ul.tree-view1 {
  display: block;
background: #d3d3d3;
  box-shadow: inset -1px -1px #D8D8D8,
    inset 1px 1px #808080, inset -2px -2px #B5B5B5,
    inset 2px 2px #A8A8A8;
  padding: 6px;
  margin: 0;
left:60px;
font-size: 15px;
}







ul.tree-view li {
  list-style-type: none;
}

ul.tree-view a {
  text-decoration: none;
  color: #000;
}

ul.tree-view a:focus {
  background-color: #000080;
  color: #ffffff;
}

ul.tree-view ul,
ul.tree-view li {
  margin-top: 3px;
}

ul.tree-view ul {
  margin-left: 16px;
  padding-left: 16px;
  /* Goes down too far */

}

ul.tree-view ul > li {
  position: relative;
}
ul.tree-view ul > li::before {
  content: "";
  display: block;
  position: absolute;
  left: -16px;
  top: 6px;
  width: 12px;

}

/* Cover the bottom of the left dotted border */
ul.tree-view ul > li:last-child::after {
  content: "";
  display: block;
  position: absolute;
  left: -20px;
  top: 7px;
  bottom: 0px;
  width: 8px;
  background: #ffffff;
}

pre {
  display: block;
  background: #ffffff;
  box-shadow: inset -1px -1px #ffffff,
    inset 1px 1px #808080, inset -2px -2px #dfdfdf,
    inset 2px 2px #0a0a0a;
  padding: 12px 8px;
  margin: 0;
}

code,
code * {
  font-family: monospace;
}

summary:focus {
  outline: 1px dotted #000000;
}

::-webkit-scrollbar {
  width: 16px;
}
::-webkit-scrollbar:horizontal {
  height: 17px;
}

::-webkit-scrollbar-corner {
  background: #dfdfdf;
}

::-webkit-scrollbar-track {
  background-image: url("https://file.garden/aCFGJWmMqiDpAecA/image_2025-06-14_162122494.png");
}

::-webkit-scrollbar-thumb {
  background-color: #FBCDE9;
  box-shadow: inset -1px -1px #D28EB3,
    inset 1px 1px #F4CDE5, inset -2px -2px #FEBCE5,
    inset 2px 2px #FFE5F5;
}

::-webkit-scrollbar-button:vertical:start {
  height: 17px;
  background-image: url("https://file.garden/aCFGJWmMqiDpAecA/image_2025-06-14_161839575.png");
}
::-webkit-scrollbar-button:vertical:end {
  height: 17px;
  background-image: url("https://file.garden/aCFGJWmMqiDpAecA/image_2025-06-14_161714936.png");
}
::-webkit-scrollbar-button:horizontal:start {
  width: 16px;
  background-image: url("https://file.garden/aCFGJWmMqiDpAecA/image_2025-06-14_162253470.png");
}
::-webkit-scrollbar-button:horizontal:end {
  width: 16px;
  background-image: url("https://file.garden/aCFGJWmMqiDpAecA/image_2025-06-14_161456145.png");
}
/* The Close Button */
.close {
  margin-left: 2px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='8' height='7' viewBox='0 0 8 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 0H1H2V1H3V2H4H5V1H6V0H7H8V1H7V2H6V3H5V4H6V5H7V6H8V7H7H6V6H5V5H4H3V6H2V7H1H0V6H1V5H2V4H3V3H2V2H1V1H0V0Z' fill='black'/%3E %3C/svg%3E");
  background-repeat: no-repeat;
  background-position: top 2px center;
  background-color:#fdcfe9;
  border-color:#fdcfe9;
}
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}

    .taskbar {
      position: fixed;
      bottom: 0;
      left: 0;
        box-shadow: inset 0 10px 10px -3px rgba(255,237,248, 0.3);
      z-index: 900;
      width: 100%;
      height: 40px;
background: #FCD7EF;
      border-top: 2px solid #FFEDF8;
      border-bottom: 2px solid #404040;
      display: flex;
      align-items: center;
      padding: 2px;
      box-sizing: border-box;
    }

    .start-button {
      font-family: MS PGothic;
      font-size: 15px;
      background: linear-gradient(180deg, hsla(328, 91%, 83%, 1) 0%, hsla(328, 100%, 91%, 1) 50%, hsla(328, 91%, 83%, 1) 100%);

      
      padding: 2px 10px;
      
      margin-bottom:3px;
      height: 30px;
      width: 80px;
      margin-right: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
 box-shadow: inset -1px -1px #CB6A98,
    inset 1px 1px #FFE5F5, inset -2px -2px #D28EB3,
    inset 2px 2px #FFE0F4;
}
    



    .start-button.active {
    box-shadow: inset -2px -2px #FFE0F4,
    inset -1px -1px #FFE5F5, inset -2px -2px #FEBCE5,
    inset 2px 2px #D28EB3;
    

}

    .start-button img {
      width: 16px;
      height: 16px;
      margin-right: 5px;
    }

    .start-menu {
      position: fixed;
      bottom: 40px;
      left: 0;
      height: 390px;
      width: 305px;

background: linear-gradient(90deg, hsla(214, 100%, 23%, 1) 0%, hsla(214, 69%, 37%, 1) 50%, hsla(214, 100%, 23%, 1) 100%);
      border: 2px outset #002B63;
      display: none;
      flex-direction: column;
      z-index: 1000;
    }

.leftstartmenu{
 width: 152px; 
background: linear-gradient(180deg, hsla(321, 86%, 92%, 1) 1%, hsla(321, 100%, 96%, 1) 50%, hsla(321, 86%, 92%, 1) 100%);

  height: 290px;
  border: 2px outset #FEBCE5;
position:absolute;
  top:55px;
}
.rightstartmenu{
 width: 152px; 
  background: url('https://file.garden/aCFGJWmMqiDpAecA/image_2025-06-14_000803632.png');
  background-repeat: repeat;
  background-size: cover;
  height: 290px;
  border: 2px outset #F4B0D5;
position:absolute;
  top:55px;
left: 150px;
}





.double-stroke {
  font-family: "MS PGothic", sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #FF8ECA;

  text-shadow:
    /* inner white */
    -1px -1px 0 #ffffff,
     0px -1px 0 #ffffff,
     1px -1px 0 #ffffff,
    -1px  0px 0 #ffffff,
     1px  0px 0 #ffffff,
    -1px  1px 0 #ffffff,
     0px  1px 0 #ffffff,
     1px  1px 0 #ffffff,

    /* outa blue */
    -2px -2px 0 #000,
    -2px -1px 0 #000,
    -2px  0px 0 #000,
    -2px  1px 0 #000,
    -2px  2px 0 #000,

    -1px -2px 0 #000,
     0px -2px 0 #000,
     1px -2px 0 #000,

    -1px  2px 0 #000,
     0px  2px 0 #000,
     1px  2px 0 #000,

     2px -2px 0 #000,
     2px -1px 0 #000,
     2px  0px 0 #000,
     2px  1px 0 #000,
     2px  2px 0 #000;
}


.startdouble-stroke {
  font-family: "MS PGothic", sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #FF8ECA;

  text-shadow:
    /* inner white */
    -1px -1px 0 #ffffff,
     0px -1px 0 #ffffff,
     1px -1px 0 #ffffff,
    -1px  0px 0 #ffffff,
     1px  0px 0 #ffffff,
    -1px  1px 0 #ffffff,
     0px  1px 0 #ffffff,
     1px  1px 0 #ffffff;

    
}


.status-bar {
  position: fixed;
  bottom: 0;
  right: 0;
  height: 24px;

  border-top: 2px solid #D28EB3;
  border-left: 2px solid #D28EB3;
  border-right: 2px solid #FFE0F4;
  border-bottom: 2px solid #FFE0F4;
  display: flex;
  align-items: center;
  padding: 0 10px;
  z-index: 1000;
bottom: 7px;
right: 20px;
}

.status-bar2 {
  position: fixed;
  bottom: 0;
  right: 0;
  height: 24px;

  border-top: 2px solid #D28EB3;
  border-left: 2px solid #D28EB3;
  border-right: 2px solid #FFE0F4;
  border-bottom: 2px solid #FFE0F4;
     z-index: 10000; 
width: 180px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  
bottom: 7px;
right: 1550px;
}



.status-bar-field {
  width: 200px;
  height: 20px;
  font-size: 12px;
}

.status-bar-field {
  font-family: "MS Sans Serif", sans-serif;
  font-size: 17px;
  color: #003377;
  padding: 0 6px;
  min-width: 85px; /* Makes space for full time */
  text-align: right;
  text-shadow:
    /* inner white */
    -1px -1px 0 #ffffff,
     0px -1px 0 #ffffff,
     1px -1px 0 #ffffff,
    -1px  0px 0 #ffffff,
     1px  0px 0 #ffffff,
    -1px  1px 0 #ffffff,
     0px  1px 0 #ffffff,
     1px  1px 0 #ffffff,

    /* outa blue */
    -2px -2px 0 #FCA1CA,
    -2px -1px 0 #FCA1CA,
    -2px  0px 0 #FCA1CA,
    -2px  1px 0 #FCA1CA,
    -2px  2px 0 #FCA1CA,

    -1px -2px 0 #FCA1CA,
     0px -2px 0 #FCA1CA,
     1px -2px 0 #FCA1CA,

    -1px  2px 0 #FCA1CA,
     0px  2px 0 #FCA1CA,
     1px  2px 0 #FCA1CA,

     2px -2px 0 #FCA1CA,
     2px -1px 0 #FCA1CA,
     2px  0px 0 #FCA1CA,
     2px  1px 0 #FCA1CA,
     2px  2px 0 #FCA1CA;
}



.startnamebox {
   color: black;
  
  font-weight: 600;
 width: 170px;
height:50px;
font-family: "MS PGothic" ;
font-size:20px;
position: absolute;
left:80px;  
top:13px;
  text-shadow:
    /* inner white */
    -1px -1px 0 #ffffff,
     0px -1px 0 #ffffff,
     1px -1px 0 #ffffff,
    -1px  0px 0 #ffffff,
     1px  0px 0 #ffffff,
    -1px  1px 0 #ffffff,
     0px  1px 0 #ffffff,
     1px  1px 0 #ffffff,

    /* outa blue */
    -2px -2px 0 #FCA1CA,
    -2px -1px 0 #FCA1CA,
    -2px  0px 0 #FCA1CA,
    -2px  1px 0 #FCA1CA,
    -2px  2px 0 #FCA1CA,

    -1px -2px 0 #FCA1CA,
     0px -2px 0 #FCA1CA,
     1px -2px 0 #FCA1CA,

    -1px  2px 0 #FCA1CA,
     0px  2px 0 #FCA1CA,
     1px  2px 0 #FCA1CA,

     2px -2px 0 #FCA1CA,
     2px -1px 0 #FCA1CA,
     2px  0px 0 #FCA1CA,
     2px  1px 0 #FCA1CA,
     2px  2px 0 #FCA1CA;
}

.start-menu-item {
      padding: 6px 8px;
      margin: 2px 0;
      cursor: pointer;

      font-size: 14px;
      border-radius: 4px;
}




    .start-menu-item:hover {
      background: #FF99CB;
      color: white;
    }

    .menu-icon {
      width: 20px;
      height: 20px;
      margin-right: 10px;
    margin-bottom:-5px;
}

.hometextbox {
  
width:200px;  
 height: 50px;
 font-family: "MS PGothic" ;
 color: white; 
position: absolute;
left: 150px;
top:370px;
}


.custom-link {
  text-decoration: underline;
  font-family: "MS PGothic" ;
  font-size: 14px;
  color: #3E9DFF;
  position: absolute;
left: 170px;
top:360px;
}

.custom-link:hover {
  color: white; /* deeper pink on hover */
  text-decoration: underline;
}

  input::placeholder {
    color: #888; /* Change to whatever color you like */
    font-style: italic; /* Optional */
    opacity: 1; /* Ensure it's not too faded */
  }


#username::placeholder {
  color: #a26ee5;
}

#password::placeholder {
  color: #e56e6e;
}



  .hover-text {
      height: 1em;
      position: relative;
      display: inline-block;
      cursor: pointer;
      font-size: 14px;
      font-family: "MS PGothic", sans-serif;
      
      
    width: 100px; 
}

    .hover-text span {
      position: absolute;
      left: 0;
      top: 0;
      white-space: nowrap;
    
    }


.hover-text .original,
    .hover-text .hovered {
      width: 100px; 
      position: absolute;
      top: 0;
      left: 0;
    font-family: "MS PGothic", sans-serif;
}

    .hover-text .hovered {
      opacity: 0;
    }

    .hover-text:hover .original {
      opacity: 0;
    }

    .hover-text:hover .hovered {
      opacity: 1;
    }


.draggable-window {
  transition: opacity 0.2s ease;
}
.draggable-window[style*="display: none"] {
  opacity: 0;
}


    .hover-target {
margin-left:-10px;
      margin-top:7px;
      display: inline-block;
      position: fixed;
      cursor: pointer;
      padding: 10px;
      background: url('https://file.garden/aCFGJWmMqiDpAecA/image_2025-06-14_145706401.png');
      background-size: contain;
      width:20px;
    height: 20px;
}

    .tooltip-box {
      visibility: hidden;
      background-color: #FEBCE5;
      color: #000;
      width:200px;
      padding: 8px 12px;
      border-radius: 4px;
      position: absolute;
      bottom: 125%; /* Show above the element */
      left: 50%;
      transform: translateX(-50%);
      
      z-index: 1;
      opacity: 0;
      transition: opacity 0.3s;
    }

    .hover-target:hover .tooltip-box {
      visibility: visible;
      opacity: 1;
    }

    /* Optional: Add a small arrow */
    .tooltip-box::after {
      content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      border-width: 6px;
      border-style: solid;
      border-color: #FEBCE5 transparent transparent transparent;
    }


.prevent-select {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}



.indextext-box {
  width: 360px; 
text-align: left;
}



.favicon {
  width: 20px;
  height: 20px;
vertical-align: middle;
  width: 1em;      
  height: 1em;
margin-left:5px;
}



.top-marquee {
  border: 5px solid;
  border-image: linear-gradient(to right, #d4f5d9, #a9e5af);
  border-image-slice: 1;
background: linear-gradient(to bottom, #d4f5d9, #a9e5af);
 height:30px; 
text-align: center;
padding-top:10px;
}


#statuscafe {
    padding: .5em;
background: linear-gradient(180deg, hsla(327, 100%, 94%, 1) 0%, hsla(328, 91%, 83%, 1) 100%);
width:270px;
    border: 2px solid midnightblue;
position: absolute;
border-radius: 15px;
top:167px;
left:40px;
z-index: 100000000000;
}
#statuscafe-username {
    margin-bottom: .5em;
width:270px;
z-index: 100000000000;
}
#statuscafe-content {
    margin: 0 1em 0.5em 1em;
width:270px;
height:20px;
z-index: 100000000000;
}


  #statuscafe a {
    color: hotpink; 
    text-decoration: none; 
  }

  #statuscafe a:hover {
    color: deeppink; 
  }


#myImage {
  
 width:50px; height:50px; border-top: 2px solid #D28EB3; border-left: 2px solid #D28EB3; border-right: 2px solid #FFE0F4; border-bottom: 2px solid #FFE0F4; top:4px; position:relative; 
  
}

.lil {
  
 width:400px; 
  height:60px;
position: fixed;
left:1670px;
color: #A6A6A6;
top:660px;
}


.indexboxthing {
  
height: 310px;  
width:650px;
overflow-x: hidden;
  
}



.indextext-box3 {
  width: 360px; 
text-align: left;
height:10px;
font-size:17px;
margin-top:20px;
margin-left:20px;

}

.highlight {
    text-shadow:
    /* inner white */
    -1px -1px 0 #ffffff,
     0px -1px 0 #ffffff,
     1px -1px 0 #ffffff,
    -1px  0px 0 #ffffff,
     1px  0px 0 #ffffff,
    -1px  1px 0 #ffffff,
     0px  1px 0 #ffffff,
     1px  1px 0 #ffffff,

    /* outa blue */
    -2px -2px 0 #FCA1CA,
    -2px -1px 0 #FCA1CA,
    -2px  0px 0 #FCA1CA,
    -2px  1px 0 #FCA1CA,
    -2px  2px 0 #FCA1CA,

    -1px -2px 0 #FCA1CA,
     0px -2px 0 #FCA1CA,
     1px -2px 0 #FCA1CA,

    -1px  2px 0 #FCA1CA,
     0px  2px 0 #FCA1CA,
     1px  2px 0 #FCA1CA,

     2px -2px 0 #FCA1CA,
     2px -1px 0 #FCA1CA,
     2px  0px 0 #FCA1CA,
     2px  1px 0 #FCA1CA,
     2px  2px 0 #FCA1CA;
}
  
  
}