* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

:root{
	--primary: #1592e6;
	--secondary: #cae;
	--caption: #fff;
}

.header {
    width: 100%;
    height: 80px;
    background-color: #1e1e1e;
    box-shadow: 0 0.1vh 5vh rgba(0, 0, 0);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.iheader {
    width: 1250px;
    height: 100%;
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: auto;
    width: 180px;
    padding: 8px;
}

.nav {
    display: flex;
    align-items: center;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.nav a {
    display: flex;
    padding: 0px 20px;
    align-items: center;
    color: #ffffff;
}

.nav a:hover {
    display: flex;
    padding: 0px 20px;
    align-items: center;
    color: #cccccc;
}

.nav img{
	max-height: 30px;
}

a {
    text-decoration: none;
    color: black;
}

h1, h4, ol {
    margin: 0;
}

.bottom, .top-comment{
    display: flex;
    color: grey;
    font-size: 12px;
}

p {
    margin: 5px 0;
}

.top-bar {
    background-color: skyblue;
    padding: 0 40px;
}

.row {
    padding: 5px 0;
}

.main {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    justify-content: flex-start; /* Align items to the top */
    align-items: center; /* Center items horizontally */
    height: 100%; /* Adjust for header height if needed */
    font-family: "Poppins", sans-serif;
    text-align: center;
    padding-top: 100px; /* Add top padding to account for the fixed header */
    padding-left: 50px; /* Keep horizontal padding */
    padding-right: 50px; /* Keep horizontal padding */
    padding-bottom: 25px;
    background-color: #f0f0f0;
    color: #1e1e1e;
    min-height: 80vh;
}

.h2title{
    text-align: left;
    align-items: left;
    font-weight: 500;
}

.timestamp {
    padding-right: 10px;
}

textarea {
    width: 80%;
    height: 80px;
}

button {
    display: block;
    margin: 10px 0;
}

.comments {
    margin: 40px 0;
}

.timestamp {
    padding-right: 10px;
}

.comment-ts{
    padding-left: 10px;
}

.comment {
    margin: 20px 0;
    padding: 10px;
    width: 80vh;
    background-color: white;
    text-align: left;
    border-radius: 1vh;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    box-shadow: 0 1vh 1vh -1.5vh rgba(0, 0, 0);
}

.systemcomment {
    margin: 20px 0;
    padding: 10px;
    width: 80vh;
    background-color: rgb(255, 150, 150);
    text-align: left;
    border-radius: 1vh;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.accounticon img{
    width: 50px;
    height: 50px;
	max-height: 50px;
    border-radius: 50%;
}

.usericon img{
    width: 30px;
    height: 30px;
    margin-right: 1vh;
    border-radius: 50%;
}

.pfp img{
    width: 10vh;
    height: 10vh;
    background-color: gray;
    border-radius: 50%;
}

.genericbutton{
    border: none;
    align-items: center;
    padding: 10px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    background-color: #dddddd;;
    color:#1e1e1e;
    width: 190px;
}

.genericbutton:hover{
    border: none;
    align-items: center;
    padding: 10px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    background-color: #cecece;;
    color:#000000;
    width: 190px;
}

.bottompage {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    justify-content: flex-start; /* Align items to the top */
    align-items: center; /* Center items horizontally */
    height: 100px; /* Adjust for header height if needed */
    font-family: "Poppins", sans-serif;
    text-align: center;
    padding-top: 100px; /* Add top padding to account for the fixed header */
    padding-left: 50px; /* Keep horizontal padding */
    padding-right: 50px; /* Keep horizontal padding */
    background-color: #1e1e1e;
    color: #ffffff;
}

.bottompage a:link{
    color: #00b7ff;
    text-decoration: none;
}

.bottompage a:visited{
    color: #00b7ff;
    text-decoration: none;
}

.userlink{
    color: #08a3f1;
    text-decoration: none; 
}

.userlink a:visited{
    color: #08a3f1;
    text-decoration: none; 
}

textarea{
    width: 40%;
    height: 15vh;
    font-size: 16px;
    font-family: Poppins;
    padding: 10px;
    resize: none;
    border-radius: 1vh;
}

button{
    background-color: #cecece;;
    color:#000000;
    font-size: 16px;
    font-family: Poppins;
    padding: 10px;
    width: 30vh;
    outline: 0;
}

.maincontent{
    margin-left: 50vh;
    margin-right: 50vh;
}

.buttons{
    display: flex;
}

.buttons button{
    margin: 5px;
    margin-top: 10px;
}

.comment h6{
    text-align: right !important;
    margin-right: 1.5vh;
    cursor: pointer;
    color: #6f6f6f;
}

.blue-text{
    color:  rgb(0, 119, 255) !important;
    background-color: rgb(196, 223, 255);
    border-radius: 1vh;
    padding-left: 0.3vh;
    padding-right: 0.3vh;
  }

.comment-options{
    margin-top: 1vh;
    display: flex;
    justify-content: space-between;
    color: #6f6f6f;
}

.privacy-policy{
    justify-content: center;
    margin: 0% 5% 0% 5%;
}

.privacy-policy p{
    padding: 5px;
}

.topprofile {
    display: flex;
}

.topprofile img {
    width: 4vh;
    height: 4vh;
    vertical-align: middle;
    margin-left: 2vh;
    align-self: flex-end;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-window {
  background: #fff;
  color: #000;
  border-radius: 12px;
  padding: 24px 32px;
  width: 360px;
  max-width: 90%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.modal-window h3 {
  margin-top: 0;
}

.modal-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.modal-buttons button {
  padding: 10px 16px;
  margin: 1vh;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.modal {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.left{
    display: flex;
    vertical-align: middle;
    color: #6f6f6f;
}

.left h6{
    margin-right: 0.2vh;
    vertical-align: middle;
}

.left img{
    height: 2vh;
    width: 2vh;
    margin-right: 0.5vh;
}

.right{
    display: flex;
    text-align: right;
    align-items: right;
    justify-content: flex-end;
    color: #6f6f6f;
    margin-left: 0;
}

.right a{
    margin-left: 0;
}

.cssupdate1{
	display: none;
}