/* Why the fuck are we missing the Desktop class?? ITS A USELESS ELEMENT IN ALMOST 90% OF MY PAGES */

body{
    background-color: #22807F; /*#bb829f;*/
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.BGimg {
    margin:0;
    position: fixed;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -9999;
}

a {
    text-decoration: none;
    color: inherit;
}

h1 {
    text-align: center;
    color: rgb(2, 4, 136);
    font-size: 50px;
}
h2 {
    text-align: center;
    color: rgb(2, 4, 136);
}

/* Music to be at top right */
.music-btn {
  position: fixed;
  top: 20px;
  right: 40px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  z-index: 9999;
  font-size: 20px;
}
.music-ui {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 9999;
}

#volume {
  width: 90px;
  margin-top: 50px;
}

.music-btn:hover{
  background: rgba(0,0,0,0.2);
}
/* Music to be at top right */


/* Fucking i hate this stupid fucking code so fucking much */
.EpisodeSelectionDiv {
    position: relative;
}

.EpisodeSelectionDiv select {
    width: 76px;
    max-width: 76px;
    box-sizing: border-box;
    font-size: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    appearance: none;
    -webkit-appearance: none;
}



/* Search bar properties */
.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

#SearchBar {
    height: 30px;
    width: 50vh;
    background-color: #dfdfdf;
}


/* For every desktop icon on screen */
.Media-icon {
    position: absolute;
    width: 76px;
    display: flex;
    flex-direction: column;
    padding: 6px;
    gap: 4px;
    cursor: default;
    border: 1px solid transparent;
}

.Media-icon:hover {
    /* background-color: rgba(163, 163, 163, 0.15);
    border-radius: 20%;
    box-sizing: border-box; */
    cursor:pointer;
}
.Media-Label {
    color: #ebebeb;
    font-size: 15px;
    text-align: center;
    word-break:break-word;
    text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
    line-height: 1.3;
    pointer-events: none;
}
.Media-icon-Img{
    width: 60%; 
    height: auto; 
    padding-left: 10px;
}
/* For every desktop icon on screen */



/* Task bar stuff */
.Taskbar{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 28px;
    background: #c0c0c0;
    border-top: 2px solid #fff;
    display: flex;
    align-items: center;
    padding: 2px 4px;
    gap: 3px;
}
.start-btn{
    height: 22px;
    background: #c0c0c0;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #404040;
    border-right: 2px solid #404040;
    padding: 0 8px;
    font-family: 'MS Sans Serif', Tahoma, Arial, sans-serif;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}
.start-btn:hover{
    box-sizing: border-box;
}
/* Taskbar stuff */



/* WIN 95 WINDOW */
.win95-window {
    display: none;
    position: fixed;
    top: 120px;
    left: 120px;
    width: 260px;
    background: #c0c0c0;
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #404040;
    border-bottom: 2px solid #404040;
    font-family: "MS Sans Serif", Tahoma, Arial;
    font-size: 12px;
    z-index: 9999;
}
.win95-titlebar {
    background: #000080;
    color: white;
    padding: 3px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    cursor: move;
    user-select: none;
}
.win95-titlebar button {
    background: #c0c0c0;
    border: 1px solid #404040;
    font-size: 10px;
    cursor: pointer;
}
.win95-content {
    padding: 10px;
}
/* WIN 95 THEMED WINDOW */
