.main {
  height: 100vh;
  overflow: hidden;
  background-color: #008080; /* Classic Windows 95 teal */
  font-family: "MS Sans Serif", "Microsoft Sans Serif", "Tahoma", "Geneva", "Verdana", sans-serif;
  font-size: 11px;
  background-image: 
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.03),
      rgba(0, 0, 0, 0.03) 1px,
      transparent 1px,
      transparent 2px
    );
}
.stats-image {
  width: 100%;
}
/* Windows 95 style buttons and inputs */
.win95-button {
  background: #c0c0c0;
  border: 2px solid;
  border-color: #ffffff #000000 #000000 #ffffff;
  padding: 4px 8px;
  font-size: 11px;
  font-family: "MS Sans Serif", sans-serif;
  cursor: pointer;
  box-shadow: 
    inset -1px -1px 0 #000000,
    inset 1px 1px 0 #ffffff;
}

.win95-button:active {
  border-color: #000000 #ffffff #ffffff #000000;
  box-shadow: 
    inset -1px -1px 0 #ffffff,
    inset 1px 1px 0 #000000;
}

.win95-input {
  background: #ffffff;
  border: 2px solid;
  border-color: #000000 #ffffff #ffffff #000000;
  padding: 3px 4px;
  font-size: 11px;
  font-family: "MS Sans Serif", sans-serif;
  box-shadow: 
    inset -1px -1px 0 #808080,
    inset 1px 1px 0 #ffffff;
}
.folder {
  height: 10vh;
  width: 10vh;
  background-size: 100%;
  background-repeat: no-repeat;
  
}
.taskbar {
  position: absolute;
  bottom: 0;
  background-color: #c0c0c0;
  height: 40px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  border-top: 2px solid;
  border-color: #ffffff #000000 #000000 #ffffff;
  box-shadow: 
    inset 0 2px 0 #ffffff,
    inset 0 -2px 0 #808080;
}



.window-buttons {
  flex: 1;
  display: flex;
  gap: 2px;
  padding-left: 10px;
  overflow: hidden;
  align-items: center;
}

.window-button {
  background: #c0c0c0;
  border: 2px solid;
  border-color: #ffffff #000000 #000000 #ffffff;
  padding: 6px 12px;
  font-size: 11px;
  font-family: "MS Sans Serif", sans-serif;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 
    inset -1px -1px 0 #000000,
    inset 1px 1px 0 #ffffff;
  margin: 0 2px;
  height: 60%;
  display: flex;
  align-items: center;
}

.window-button.active {
  border-color: #ffffff #808080 #808080 #ffffff;
  background: #b0b0b0;
}

.window-button:active {
  border-color: #000000 #ffffff #ffffff #000000;
  box-shadow: 
    inset -1px -1px 0 #ffffff,
    inset 1px 1px 0 #000000;
}
.taskbar .start-button {
    /* Ensure the logo is still positioned correctly */
    cursor: pointer;
    /* Add any visual click feedback here */
}
.start-menu-popup {
    /* Position the menu absolutely relative to the viewport */
    position: absolute;
    bottom: 43px; /* Adjust this to sit right above the taskbar */
    left: 0;
    
    /* Classic Windows look */
    width: 70%;
    background-color: #C0C0C0; /* Classic Windows gray */
    border: 3px outset #FFFFFF; /* Create the 3D button effect */
    padding: 5px;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.4);
    z-index: 1000; /* Ensure it is on top of everything */
}
.logoimage {
  height: 39px;
  width: auto;
}
.foldercontainer {
  display: table-footer-group;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}
.logolabel {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: white;
}
.desktop {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
}
.column-1 {
  display: grid;
}
.column-2 {
  display: inline;
}
.modalcontainer {
  top:  5%;
  left: 10%;   
  background-color: #c0c0c0;
  height: auto;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  position: fixed;
  color: black;
  overflow-y: auto;
  scrollbar-color: #C0C0C0 #FFFFFF ; /* Firefox styling */
  scrollbar-width: thick;
  display: none;
  cursor: default;
  border: 2px solid;
  border-color: #ffffff #000000 #000000 #ffffff;
  z-index: 10;
  box-shadow: 
    inset -1px -1px 0 #000000,
    inset 1px 1px 0 #ffffff,
    -1px -1px 0 #000000,
    1px 1px 0 #ffffff;
}

.modalcontainer p {
  padding-left: 5px;
}
.modalcontainer h2 {
  padding-left: 5px;
}
.modalcontainer.active{
  display: block;
}
.aita-container {
  top:  5%;
  left: 10%;   
  background-color: #c0c0c0;
  height: auto;
  max-width: 400px;
  width: 90%;
  max-height: 90vh;
  position: fixed;
  color: black;
  overflow-y: auto;
  scrollbar-color: #C0C0C0 #FFFFFF ; /* Firefox styling */
  scrollbar-width: thick;
  display: none;
  cursor: default;
  border: 2px solid;
  border-color: #ffffff #000000 #000000 #ffffff;
  z-index: 10;
  text-align: center;
  box-shadow: 
    inset -1px -1px 0 #000000,
    inset 1px 1px 0 #ffffff,
    -1px -1px 0 #000000,
    1px 1px 0 #ffffff;
}
.aitp-content {
  padding: 15px;
}

.aitp-header {
  margin-bottom: 20px;
  text-align: center;
  border: 2px solid;
  border-color: #808080 #ffffff #ffffff #808080;
  padding: 10px;
  background: #c0c0c0;
  box-shadow: 
    inset -1px -1px 0 #000000,
    inset 1px 1px 0 #ffffff;
}

.aitp-header h3 {
  margin: 0 0 5px 0;
  font-size: 14px;
  font-weight: bold;
  color: #000080;
}

.aitp-subtitle {
  margin: 0;
  font-size: 11px;
  color: #333;
}

.aitp-info {
  margin-bottom: 20px;
  text-align: center;
}

.source-link {
  color: #000080;
  text-decoration: underline;
  font-size: 11px;
  font-family: "MS Sans Serif", sans-serif;
}

.source-link:hover {
  color: #ff0000;
}

.aitp-form {
  margin-bottom: 20px;
}

.aitp-label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 11px;
  color: #000;
}

.aita-container #storyInput {
  width: 100%;
  height: 120px;
  padding: 4px 6px;
  box-sizing: border-box;
  border: 2px solid;
  border-color: #000000 #ffffff #ffffff #000000;
  background-color: #ffffff;
  resize: vertical;
  font-family: "MS Sans Serif", sans-serif;
  font-size: 11px;
  box-shadow: 
    inset -1px -1px 0 #808080,
    inset 1px 1px 0 #ffffff;
  margin-bottom: 15px;
}

.aitp-controls {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.judge-button, .clear-button {
  background: #c0c0c0;
  color: black;
  font-family: 'MS Sans Serif', Tahoma, sans-serif; 
  padding: 4px 16px;
  border: 2px solid;
  border-color: #ffffff #000000 #000000 #ffffff;
  cursor: pointer;
  font-size: 11px;
  font-weight: bold;
  box-shadow: 
    inset -1px -1px 0 #000000,
    inset 1px 1px 0 #ffffff;
  min-width: 80px;
}

.judge-button:hover, .clear-button:hover {
  background: #d0d0d0;
}

.judge-button:active, .clear-button:active {
  border-color: #000000 #ffffff #ffffff #000000;
  box-shadow: 
    inset -1px -1px 0 #ffffff,
    inset 1px 1px 0 #000000;
}

.judge-button:disabled {
  background: #a0a0a0;
  cursor: not-allowed;
  color: #666;
}

.result-box {
  border: 2px solid;
  border-color: #808080 #ffffff #ffffff #808080;
  background: #ffffff;
  box-shadow: 
    inset -1px -1px 0 #000000,
    inset 1px 1px 0 #ffffff;
  margin-top: 15px;
}

.result-header {
  background: linear-gradient(to right, #000080, #1084d0);
  color: white;
  font-weight: bold;
  padding: 4px 8px;
  font-size: 11px;
  border-bottom: 1px solid #000000;
}

.result-content {
  padding: 12px;
}

.verdict-text {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 8px;
}

.confidence-text {
  font-size: 10px;
  color: #666;
}

.verdict-text.ytp {
  color: #cc0000;
}

.verdict-text.ntp {
  color: #006600;
}

.result-box.ytp {
  border-color: #ff9999 #ffffff #ffffff #ff9999;
}

.result-box.ntp {
  border-color: #99ff99 #ffffff #ffffff #99ff99;
}

/* Judgment Modal Styles */
.judgment-modal {
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #c0c0c0;
  width: 350px;
  height: auto;
  position: fixed;
  color: black;
  display: none;
  cursor: default;
  border: 2px solid;
  border-color: #ffffff #000000 #000000 #ffffff;
  z-index: 1000;
  box-shadow: 
    inset -1px -1px 0 #000000,
    inset 1px 1px 0 #ffffff,
    -1px -1px 0 #000000,
    1px 1px 0 #ffffff;
}

.judgment-content {
  padding: 20px;
  text-align: center;
}

.verdict-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.verdict-icon.ytp {
  color: #cc0000;
}

.verdict-icon.ntp {
  color: #006600;
}

.judgment-content .verdict-text {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
}

.judgment-content .confidence-text {
  font-size: 12px;
  color: #666;
  margin-bottom: 20px;
}

.judgment-actions {
  display: flex;
  justify-content: center;
}

.judgment-modal .win95-button {
  min-width: 75px;
  margin: 0 5px;
}

.aita-container p {
  padding-left: 5px;
}
.aita-container h2 {
  padding-left: 5px;
}
.aita-container.active{
  display: block;
}
.modalcontainer2 {
  text-align: left;
  background-color: #c0c0c0;
  height: auto;
  width:inherit;
  position: fixed;
  color: black;
  top: 30%;
  right: 52%;
  overflow-y: auto;
  scrollbar-color: #C0C0C0 #FFFFFF ; /* Firefox styling */
  scrollbar-width: thick;
  display: none;
  border: 2px solid;
  border-color: #ffffff #000000 #000000 #ffffff;
  box-shadow: 
    inset -1px -1px 0 #000000,
    inset 1px 1px 0 #ffffff,
    -1px -1px 0 #000000,
    1px 1px 0 #ffffff;
}
.modalcontainer2.active {
  display: block;
}
.modalcontainer2 p {
  padding: 8px;
}
.modalcontainer2 h2 {
  padding: 8px;
}

.window-title-bar {
  background: linear-gradient(to right, #000080, #1084d0);
  color: white;
  padding: 2px 4px;
  font-size: 11px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #000000;
  cursor: move;
  user-select: none;
}

.closecontainer {
  background: linear-gradient(to right, #000080, #1084d0);
  padding: 2px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #000000;
  color: white;
  font-weight: bold;
  font-size: 11px;
}

.closebutton {
  width: 16px;
  height: 14px;
  background-color: #c0c0c0;
  color: #000000;
  text-align: center;
  line-height: 12px;
  font-size: 10px;
  font-family: "MS Sans Serif", sans-serif;
  font-weight: bold;
  cursor: pointer;
  border: 1px solid;
  border-color: #ffffff #000000 #000000 #ffffff;
  box-shadow: 
    inset -1px -1px 0 #000000,
    inset 1px 1px 0 #ffffff;
}

.closebutton:active {
  border-color: #000000 #ffffff #ffffff #000000;
  box-shadow: 
    inset -1px -1px 0 #ffffff,
    inset 1px 1px 0 #000000;
}
.datetime {
  padding: 5px;
  border: inset;
  border-radius: 2px;
  position: fixed;
  right: 10px;
  color: black;
}
.win95-content {
  padding: 15px;
  background: #c0c0c0;
}

.win95-fieldset {
  border: 2px solid;
  border-color: #808080 #ffffff #ffffff #808080;
  background: #ffffff;
}

.win95-legend {
  font-size: 11px;
  font-weight: bold;
  color: #000080;
  margin-bottom: 10px;
}

.win95-lang {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 11px;
}

.win95-label {
  width: 100px;
  font-weight: bold;
}

.win95-progress {
  flex: 1;
  height: 18px;
  border: 2px solid;
  border-color: #808080 #ffffff #ffffff #808080;
  background: #ffffff;
  margin: 0 10px;
}

.win95-bar {
  height: 100%;
  background: linear-gradient(to bottom, #000080, #1084d0, #000080);
}

.win95-percent {
  width: 50px;
  text-align: right;
  font-weight: bold;
}

.win95-button-group {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.win95-button {
  padding: 4px 20px;
  background: #c0c0c0;
  border: 2px solid;
  border-color: #ffffff #000000 #000000 #ffffff;
  font-size: 11px;
  font-weight: bold;
  cursor: pointer;
  min-width: 75px;
}

.win95-status {
  background: #c0c0c0;
  border-top: 2px solid;
  border-color: #ffffff #000000 #000000 #ffffff;
  padding: 3px 4px;
  font-size: 11px;
  display: flex;
  gap: 10px;
}

.win95-status-item {
  border: 2px solid;
  border-color: #808080 #ffffff #ffffff #808080;
  padding: 2px 6px;
}
.projects {
  display:none;
  top: 45%;
  right: 22%;
  text-align: left;
  background-color: #c0c0c0;
  height: auto;
  width:unset;
  max-height: 90vh;
  position: fixed;
  color: black;
  overflow-y: auto;
  scrollbar-color: #C0C0C0 #FFFFFF ; /* Firefox styling */
  scrollbar-width: thick;
  border: 2px solid;
  border-color: #ffffff #000000 #000000 #ffffff;
  box-shadow: 
    inset -1px -1px 0 #000000,
    inset 1px 1px 0 #ffffff,
    -1px -1px 0 #000000,
    1px 1px 0 #ffffff;
}
.folderitem {
  padding: 2px;
  text-align: center;
  margin: 10px;
}
.folderitem:hover {

  background-color: lightsteelblue;
}
.projects p {
  font-size: 13px;
  color: black;
  text-underline-offset: none;
  margin: 5px;
  margin-top:0px ;
}
.projectsmain {
  display: flex;
}
.projects.active {
  display: block;
}
.merge {
  display: flex;
  height: 20px;
}
.contributionsmain {
  display: inline;
}
.contributionitem {
  display: flex;
  width:670px;
  margin: 5px;
}
.contributionitem:hover {
  background-color: lightsteelblue;
  border-radius: 2px;
}
.contributions {
  display:none;
  max-width: fit-content;
  top: 40%;
  right: 25%;
  overflow: clip;
  text-align: left;
  background-color: #c0c0c0;
  height: auto;
  width:unset;
  max-height: 90vh;
  position: fixed;
  color: black;
  overflow-y: auto;
  scrollbar-color: #C0C0C0 #FFFFFF ; /* Firefox styling */
  scrollbar-width: thick;
  border: 2px solid;
  border-color: #ffffff #000000 #000000 #ffffff;
  box-shadow: 
    inset -1px -1px 0 #000000,
    inset 1px 1px 0 #ffffff,
    -1px -1px 0 #000000,
    1px 1px 0 #ffffff;
}
.contributions.active {
  display: block;
}

.contributions p {
  font-size: 13px;
  color: black;
  margin: 5px;
  margin-top:0px ;
}
.no-underline{
  text-decoration: none;
}
@media (max-width: 600px) {
  .modalcontainer{
    z-index: 999;
    top: 12%;
    left: 2%;
  }
  .modalcontainer2{
    left: 4%;
    width: fit-content;
  }
  .projects {
    left: 30%;
    top: 0%;
  }
  .contributions {
    right: 4%;
    width: 70%;
    left: 4%;
  }
  .projectsmain{
    display: contents;
  }
  .start-menu-popup{
    width: 94%;
  }
  .contributions {
    width: -webkit-fill-available;
  }
  .folder {
    height: 9vh;
    width: auto;
  }
  .folderitem {
    height: 9.5vh;
  }

  .window-button {
    font-size: 6px;
    padding: 3px 6px;
    margin: 0 1px;
    height: 22px;
    width:inherit;
  }
}

