  a {
  color: #7D8776;
  }

  html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  }

  body {
  background-image: url("/media/backgrounds/green-check.gif");
  background-repeat: repeat;
  font-family: 'angel';
  font-size: 11px;
  padding-top: 20px;
  padding-bottom: 20px;
  box-sizing: border-box;
  overflow: hidden;
  color: #606060;
  }
  
      /* fonts */    

    @font-face {
      src: url(/fonts/pc-9800.woff2);
      font-family: 'pc-9800';
      font-display: swap;
    }
    
    @font-face {
      src: url(/fonts/snacker.woff2);
      font-family: 'snacker';
      font-display: swap;
    }

    @font-face {
      src: url(/fonts/angel.woff2);
      font-family: 'angel';
      font-display: swap;
    }
    
    @font-face {
      src: url(/fonts/Spirit.woff2);
      font-family: 'spirits';
      font-display: swap;
    }
    
    /* scrollbar */
    
    ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background: transparent;
    }
    ::-webkit-scrollbar-thumb {
    background-color: #fff7fa;
    -webkit-border-radius: 0ex;
    border: 1px dotted #edaecb;
    }
    
    /* selection */
    
    ::selection {
    background-color: #fef4fa;
    color: #8d7c76;
    }

    ::-moz-selection {
    background-color: #fef4fa;
    color: #8d7c76;
    }

    /* tooltip */

    #s-m-t-tooltip {
    max-width:300px; /*how big the tooltip can be at most*/
    border-radius: 0px; /*change your border radius*/
    padding:3px 4px 5px 4px; /*padding inside tooltip*/
    margin:10px 7px -2px 10px; /*distance from word*/
    background-color:#FEF8FC; /*background color*/ 
    border:1px dotted #AAAAAA; /*border info*/
    font-family:tahoma; /*tooltip font*/
    font-size:7px; /*tooltip font size*/
    letter-spacing:2px; /*tooltip letter spacing*/
    color:#545454; /*tooltip font color*/
    position: relative;
    z-index: 100000 !important;
    pointer-events: none;
    text-align: center;
    }

    /* context menu */
    
  * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }
    
  *:hover {
  cursor: url(/media/cursor/hand.png), progress !important;
  }

  ul {
  list-style: none;
  }

  #context_menu {
  background: #FEF8FC;
  border: 1px dotted #AAAAAA;
  letter-spacing: 1px;
  width: 70px;
  font-family: Verdana;
  font-size: 8px;
  position: absolute;
  display: none;
  z-index: 100000;
  }

  #context_menu ul li {
  padding: 4px;
  cursor: url('/media/cursor/hand.png'), pointer;
  z-index: 100000;
  }

  #context_menu ul li:hover {
  background: #FEF8FC;
  color: #848484;
  z-index: 100000;
  }

/* MAIN CONTAINER */
.post-card {
  display: inline-block;     
  width: fit-content;        
  max-width: 100%;          
  background: white;
  border-radius: 15px;
  padding: 6px 10px;
  border: 1px solid lightgray;
  box-sizing: border-box;
}

/* HEADER */
.post-header {
  display: flex;
  align-items: center;
}

/* NAME + STATUS GROUP */
.user-info {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%; 
}

.status-left {
  margin-right: auto;
}

.status-left img {
  display: block;
  width: 13px;
  height: 13px;
}

.inline-image {
  float: left;
  margin-right: 10px; 
  width: 40px;         
  height: auto;
}

/* NAME */
.post-header h3 {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: #606060;
}

.post-header h3:before {
  content: url(https://files.catbox.moe/4j1n48.png);
  margin-right: 6px;
}

/* STATUS */
.status {
  background: #fbe7f0;
  color: #606060;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 8px;
  white-space: nowrap;
  display: inline-flex;       
  align-items: center;          
  gap: 4px;           
}

/* AVATAR */
.blog-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0; 
  border: 1px solid lightgray;
}

/* TEXT (YOUR RULES) */
#text {
  line-height: 1.25em;
  padding: 2px;
  background-color: white;
  margin: 4px;
}

/* FOOTER */
.post-footer {
  font-size: 10px;
  color: #8c8c8c;
  margin-left: 5px;
  margin-bottom: 2px;
}

/* LEFT ALIGN RULE */
.container, h3, #blog-icon {
  text-align: left;
}

.entries {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 5px;
  margin: 8px 0;
}

.microblog-wrap {
  width: 100%;
  box-sizing: border-box;
  padding: 2px 8px;
  margin-left: auto; 
  margin-right: 12px;
}

.microblog-scroll {
  height: calc(100% - 15px);
  margin-top: 5px;          
  margin-bottom: 5px;     
  overflow-y: auto;
  box-sizing: border-box;
  overflow-x: hidden;
}