body {
    font-family: 'PTsans';
    position: relative;
    background-image: url('/IMGs/stars.png');
}
.wrapper {

    background-color: #9d70cd;
    max-width: 1111px;
    padding: 10px;
    margin:  44px auto;
    display: grid;
    grid-template-columns: .6fr 1fr 1fr 1fr;
    grid-template-rows: 160px auto;
    gap: 20px;
    grid-template-areas: 
    "header header header header"
    "aside main main status"
    "footer footer footer footer";
}
        header {grid-area: header;}
        main {grid-area: main;}
        aside {grid-area: aside;}
        #status {grid-area: status;}
        footer {grid-area: footer;}

header {
    font-family: 'Angeris';
    font-size: 30px;
    padding-left: 16px;
    color: rgb(17, 1, 83);
    text-shadow: 0px 0px 4px rgb(245, 21, 219), 2px 2px 2px rgb(225, 161, 255);
    background-color: #b64ea1;
    background-image: url('/IMGs/satuurn.png');
    background-position: 200px -40px;
    background-repeat: no-repeat;
}
    #clock {
            position: relative;
            left: 850px;
            bottom: 40px;
        }
   
nav {
    width: 178px;
    height: 240px;
    overflow-y: scroll;
    text-align: center;
    & h2 {
        display: inline;
        color: #b64ea1;
    }
}
    nav a {
        display: block;
        text-align: center;
        font-size: 14px;
        padding: 2px;
        margin: 6px;
    }
 h2 {
    display: inline;
    font-family: 'Angeris';
    font-size: 30px;
 }
#info {
    padding: 10px;
    width: 440px;
    & section {
        width: fit-content;
        margin: auto;
    }
}
    #status {
        width: 400px;
    }
    #status > section > span:nth-child(7) { /* Last Updated text */
        font-size: 12px;
        text-align: center;
    }
        #imood {
            font-size: 13px;
            margin-top: 8px;
        }
        #statuscafe {
            padding: .5em;
        }
        #statuscafe-username {
            margin-bottom: .5em;
        }
        #statuscafe-content {
            margin: 0 1em 0.5em 1em;
        }
    
#updates {
    height: 120px;
    padding: 2px 4px;
    overflow-y: scroll;
}
    #updates section {
        max-height: min-content;
        padding: 4px 12px;
        border: 2px dashed purple;
        border-radius: 20px;
    }
#to-do {
    height: 180px;
    overflow-y: scroll;
    font-size: 11px;
    & h4 {text-align: center;}
    & ul {
        list-style-position: outside;
    }
}

.box {
    border: 1px solid rgb(170, 0, 255);
    padding: 6px;
    background-color: rgb(209, 145, 255);
}
.scroll {
    overflow-y: scroll;
    overflow-x: none;
}

footer {
    text-align: center;
}

::-moz-selection {
  color: rgb(164, 60, 193);
  background: rgb(216, 150, 242);
}
::selection  {
  color: rgb(164, 60, 193);
  background: rgb(216, 150, 242);
}

.popup {
  position: fixed;
  top: 100px;
  left: 20px;
  width: 350px;
  background: #222;
  border: 2px solid #a78ac7;
  border-radius: 8px;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.popup-header {
  cursor: move;
  background: #a78ac7;
  color: #fff;
  padding: 8px;
  border-radius: 8px 8px 0 0;
  font-weight: bold;
  user-select: none;
}
#chattable {
  border: none;
  display: block;
}

      



