body {
  overflow-x: hidden;
  background-color: #3DDC84;
   font: 95% / 140% helvetica, verdana, arial, sans-serif;
  margin: auto;
  height: 100%;
  min-width: 350px;
  text-align: center
  justify-content: center;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 400;
  font-style: normal;
  overflow-y: scroll;
}

.image-wrapper {
  width: 100%;
  /* or a fixed width like 300px */
  position: relative;
}

#options {
    background-color: darkgreen;
    padding: 2px;
    opacity: 50%;
    height: 22px;
    border-radius: 10px;
}

.context {
  padding: 4px 5px 2px 5px;
  font-size: 14px;
  cursor: pointer;
  background-color: red;
  color: white;
  white-space: nowrap;

}
.centered_without_abvri {
    position: absolute;
    min-width: 98%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 3 / 1.7;
  /* height = 2/3 of width */
  background: linear-gradient(100deg,
      gray 30%,
      #d3d3d3 40%,
      gray 50%);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
  border-radius: 6px;
  /* optional: rounded corners */
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}



/* Apply transition to all relevant elements */
.link,
.bottom-left,
.bottom-right,
#options {
  display: inline-block;
  /* Ensures proper scaling */
  transition: transform 0.3s ease, background-color 0.3s ease;
  transform-origin: center;
  /* Make sure the scaling happens from the center */
}

/* Hover effects for each of the elements */
.bottom-left:hover,
.bottom-right:hover,
#options:hover {
  transform: scale(1.1);
  /* Apply scaling */
}

/* Hover effects for each of the elements */
.link:hover {
  background-color: lightgreen;
}

button {
  transition: opacity 0.3s ease;
}

button:hover {
  opacity: 0.7;
  /* Adjust opacity level */
}



.abvri {
  display: inline-block;
  /* Allows transform to work properly */
  transition: all 0.3s ease;
  /* Smooth transition for hover effect */
}

.abvri:hover {
  transform: scale(1.05);
  /* Slightly increase size */
}






.profile_icon {
  border-radius: 25px;
}






#profile_defaultOpen {
  border-bottom: medium solid rgb(61, 220, 132);
}

.row {
  width: 100%;
}



.content {
  padding: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}














.thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures the image covers the container */
  margin: auto;
  border-radius: 15px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.3s ease;
}

.thumbnail:hover {
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.5);
}



.profile-pic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 7px;
}








.imageContainer {
  position: relative;
  text-align: center;
  color: white;
  width: 100%;
}

.imageContainer img {
  width: 100%;
  max-width: 600px;
  opacity: 55%;
}



#fullForm {
  padding: 1px 3px;
  line-height: 1.3;

}



.abvri12 {
  font-size: 2.5em;
}

.abvri10,
.abvri11 {
  font-size: 2.8em;
}

/* Styles for .abvri classes */
.abvri8,
.abvri9 {
  font-size: 3em;
}

.abvri7 {
  font-size: 3.5em;
}

.abvri6,
.abvri5 {
  font-size: 4em;
}

.abvri4,
.abvri3,
.abvri2 {
  font-size: 4.5em;
}

.abvri3,
.abvri2 {
  margin-bottom: 15px;
  /* Common margin for .abvri3 and .abvri2 */
}

.fullForm9 {
  font-size: 1em;
}

.fullForm7,
.fullForm8 {
  font-size: 1.1em;
}

/* Styles for .fullForm classes */
.fullForm6,
.fullForm5 {
  font-size: 1.2em;
}

.fullForm4 {
  font-size: 1.5em;
}

.fullForm3 {
  font-size: 1.6em;
  max-width: 99%;
  line-height: 1.2;
}

.fullForm2 {
  max-width: 99%;
  font-size: 1.5em;
  white-space: nowrap;
}

.fullForm {
  padding: 0px 5px;
}

  .container {
    position: relative;
    text-align: center;
    width: calc(100% - 10px);
    margin: 3px 4px;
    padding: 0;
    /* Remove any default padding */
  }


@media only screen and (max-width: 600px) {
.context {
  padding: 3px 4px 2px 4px;
  font-size: 12px;
  cursor: pointer;
  background-color: red;
  color: white;
  white-space: nowrap;

}
 
.centered_without_abvri {
    position: absolute;
    min-width: 98%;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

  .abvri10,
  .abvri11 {
    font-size: 2.4em;
  }

  .abvri9 {
    font-size: 2.6em;
  }

  .abvri8 {
    font-size: 2.8em;
  }

  .abvri6,
  .abvri7 {
    font-size: 3em;
  }


  .abvri4,
  .abvri5 {
    font-size: 3.5em;
  }

  .abvri3 {
    font-size: 4em;
  }

  .abvri2 {
    font-size: 4.2em;
    margin-bottom: 15px;
  }

  .fullForm9 {
    font-size: 1em;
  }

  .fullForm8 {
    font-size: 1.1em;
  }

  .fullForm7 {
    font-size: 1.2em;
  }

  .fullForm6 {
    font-size: 1.3em;
  }

  .fullForm5 {
    font-size: 1.2em;
  }

  .fullForm4 {
    font-size: 1.5em;
  }

  .fullForm3 {
    font-size: 1.6em;
    max-width: 99%;
    line-height: 1.2;
  }

  .fullForm2 {
    max-width: 99%;
    font-size: 1.6em;
    white-space: nowrap;

  }



  #fullForm {
    margin-bottom: 10px;
    padding: 0px 3px;
  }

  .footer {
    font-size: 0.7em;
  }
}


@media only screen and (max-width: 812px) and (orientation: landscape) {




  .abvri7 .abvri8,
  .abvri9 {
    font-size: 2.5em;
  }

  .abvri6 {
    font-size: 2.5em;
  }

  .abvri5 {
    font-size: 3em;
  }

  .abvri4 {
    font-size: 3.5em;
  }

  .abvri3 {
    font-size: 4em;
  }

  .abvri2 {
    font-size: 4em;
    margin-bottom: 15px;
  }


  /* Individual post container */
  .container {
    position: relative;
    text-align: center;
    margin: 4px;
    padding: 0;
  }

}



.bottom-left {
  position: absolute;
  bottom: 10px;
  left: 3px;
  background-color: darkgreen;
  color: white;
  padding: 3px 8px 3px 10px;
  border-radius: 15px;
  opacity: 70%;
  cursor: pointer;
  font-size: 14px;
}


.bottom-left:after,
#draft_bottom_left:after {
  background-color: lightgreen;
  box-shadow: none;
  transform: translateX(5px);

}

.top-left {
  position: absolute;
  top: 4px;
  left: 4px;
}

.top-right {
  position: absolute;
  top: 4px;
  right: 4px;
}



#date {
  background-color: darkgreen;
  position: absolute;
  right: 0px;
  top: 1px;
  opacity: 80%;
  padding: 1px 5px;
  color: white;
  text-wrap: nowrap;
  border-radius: 10px;
  font-size: 13px;
}


.bottom-right {
  position: absolute;
  bottom: 10px;
  right: 3px;
  background-color: darkgreen;
  color: white;
  border-radius: 15px;
  opacity: 70%;
  cursor: pointer;
  opacity: 70%;
  color: white;
  padding: 3px 8px 3px 10px;
}



.centered {
  position: absolute;
  min-width: 98%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

}


.footer {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    font-size: 0.9em;
    text-wrap: nowrap;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    border-radius: 6px;
}

.showNotice {
  max-height: 380px;
  min-width: 350px;
  max-width: 85%;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
}

.escalate {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 5px;
  cursor: pointer;
  font-size: 15px;
  background-color: red;
  color: white;
  border-radius: 10px 0px 10px 0px;
  opacity: 88%;
}


.link a,
.link {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 4px;
  font-size: 18px;
  cursor: pointer;
  background-color: darkgreen;
  border-radius: 10px 0px 10px 0px;
  text-decoration: none;
}

.context-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 80%;
}



.context-container:hover {
  opacity: 1;
  /* Full opacity */
  transition: opacity 0.3s ease-in-out;
  /* Smooth transition */
}

.header {
  position: absolute;
  top: 19px;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 1px;
  color: blue;
  border-style: double;
  opacity: 20%;
  font-size: 0.7em;
}

.dp {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  /* Make it round */
  cursor: pointer;
}

#username {
  position: absolute;
  left: 35px;
  top: 5px;
  color: #3DDC84;

}

#comments {
  color: white;

}

#s,
#c {
  opacity: 80%;
}

#s:hover,
#c:hover {
  opacity: 100%;
}

#column1 .bottom-left,
#column1 .bottom-right {
  bottom: 10px;
}