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;
}

mark {
 background-color: #fbe7f0;
 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 {
  display: none !important;
}

* {
  -ms-overflow-style: none !important;  
  scrollbar-width: none !important;    
}


/* selection */

::selection {
  background-color: #fef4fa;
  color: #8d7c76;
}

::-moz-selection {
  background-color: #fef4fa;
  color: #8d7c76;
}

/* tooltip */

#s-m-t-tooltip {
  max-width: 300px;
  border-radius: 0px;
  padding: 3px 4px 5px 4px;
  margin: 10px 7px -2px 10px;
  background-color: #FEF8FC;
  border: 1px dotted #AAAAAA;
  font-family: tahoma;
  font-size: 7px;
  letter-spacing: 2px;
  color: #545454;
  position: relative;
  z-index: 100000 !important;
  pointer-events: none;
  text-align: center;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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;
  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 0 15px 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;
}

.post-title 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(/media/graphics/ball.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;
}

.post-title {
  color: #606060;
  font-size: 13px;
  padding: 2px 5px;
  border-radius: 8px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: spirits;
  letter-spacing: 0.2px;
}


/* AVATAR */
.blog-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid lightgray;
}

/* TEXT */
#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;
}