@import url('https://fonts.googleapis.com/css?family=Cherry Bomb One|Itim|Silkscreen|Press Start 2P|Sour Gummy|Hi Melody|Chicle|Sunshiney ');

@import url('https://use.fontawesome.com/releases/v5.8.1/css/all.css');
:root {

    --jan-color: #58b9d6;
    --feb-color: #FE66A8;
    --mar-color: #61bd37;
    --apr-color: #f894b4;
    --may-color: #FD1500;
    --jun-color: #8b6af8;
    --jul-color: #006DFE;
    --aug-color: #d69807;
    --sep-color: #FA8EE8;
    --oct-color: #9c02aa;
    --nov-color: #EB7503;
    --dec-color: #D20503;
    }

body {
    height: 100vh;
    width: 200px;
    background-color: transparent;
    background-image: url(https://heathersaturnia.neocities.org/pxls/deco/dshbkgrnd.png);
opacity: 95%;
    overflow: scroll;
    overflow-x: hidden;

}
.status {
    margin-bottom: 16px;
    padding: 10px;
    background-color: #ffffff;
    border: 1px dashed var(--month-color);
    width: 300px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    
}

.status-date {
  font-family: Silkscreen;
  font-size: 15px;
  color: var(--month-color);
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-bottom: 6px;
}
.weekday-icon {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}



.status-body {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    font-family: Itim;
    font-size: 12px;
    color: #000000;
}
.status-divider {
  display: block;
  margin-top: 15px;
  margin-bottom: 10px;
  max-width: 300px;
  width: 100%;
  
}
.mood-container {
    width: 60px;
    flex-shrink: 0;
    margin-right: 10px;
    display: flex;
    justify-content: center;
}
.status-text {
  line-height: 1.6;
  white-space: normal;
}


.mood-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}
.mood-icon-wrapper {
  position: relative;
  display: inline-block;
}

.mood-icon-wrapper::after {
  content: attr(data-mood);
  position: absolute;
  left: 50%;
  bottom: -25%;
  transform: translateX(-50%);
  font-family: Silkscreen;
  font-size: 10px;
  background: var(--month-color);
  color: #ffffff;
  padding: 3px 7px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
  z-index: 100;
}

.mood-icon-wrapper:hover::after {
  opacity: 1;
}


.right-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.status-time {
    font-family: Courier New;
    color: var(--month-color);
    font-weight: bold;
    font-size: 10px;
    margin-top: 10px;
    margin-bottom: -10px;
    padding: 2px;
    align-self: flex-end;
    
}

.time-icon {
    width: 15px;
    height: 15px;
    vertical-align: middle;
    margin-left: 4px;
}


.icon {
    position: static;
    width: 20px;
    height: 20px;
    left: -6px;
    transition: all 0.2s ease-in-out;
    image-rendering: pixelated;
}

.icon:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
    image-rendering: pixelated;
}

#scrollToTop {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-position: center;
  image-rendering: pixelated;
  margin: -15px 0 0 280px;
  display: block;
  cursor: pointer;
}


#scrollToTop:hover::after {
  content: "Top";
  position: absolute;
  left: 50%;
  bottom: 120%;
  transform: translateX(-50%);
   font-family: Silkscreen;
font-size: 10px;
  background: var(--month-color);
  color: #ffffff;
  padding: 3px 7px;
  border-radius: 4px;
  white-space: nowrap;
}

#monthHeader {
  width: 298px;
  height: 90px;
border: 1px solid var(--month-color);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: 5px;
}

