*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  body {
    display: flex;
    min-height: 100vh;
  }

  p, h2, h1, h3, h4{
      font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
               'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif,
               'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  }

  /* Hide scrollbar for Chrome, Safari and Opera */
  .content-center::-webkit-scrollbar {
      display: none;
  }

  .layout {
    display: flex;
    max-width: 1200px; /* or whatever total width you want */
    margin: 0 auto; /* center it horizontally */
    height: 100vh;
  }



  .new-to-truth {
    text-align: left;
    margin-left: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 70%;
  }
  .new-to-truth h2 {
    margin-left: 0px;
    font-size: 1.125rem;
    line-height: 1rem;
    margin-bottom: 10px;
  }
  .new-to-truth p {
    font-size: .875rem;
    line-height: 1.25rem;
    color: #555;
  }

  .buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
    width: 70%;
    align-items: right;
    margin-top: -5px;
  }

  .buttons button {
    width: 290px;
    margin-left: 30px;
    padding: 10px;    
    font-size: 0.9rem;
    line-height: 1.25rem;
    border-radius: 30px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
  }

  .create-account {
    background-color: #554cf7;
    color: white;
    border: none;
  }

  .sign-in {
    background: white;
    color: rgb(0, 0, 0); /* now black text */
    border: 1px solid #dadada;
    margin-bottom: 20px;
  }

  .footer-links {
    color: #777;
    margin-top: -15px; /* small margin after buttons */
    text-align: left;
  }

  .footer-links p {
    margin: 20px 0;
    margin-left: 35px;
    font-size: 0.9rem;
    line-height: 1rem;
    width: 280px;
    line-height: 1.2rem;
    margin-top: -5px;
  }    
  
/* Sticky Footer */
  .sticky-footer {
    margin: auto;
    background-color: #ffffff;
    padding: 40px;
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center; /* Center all items horizontally */
    align-items: center; /* Center items vertically */
    border: 1px solid #f1f1f1;
  }

  /* Wrapper to center text and buttons together */
  .sticky-footer .footer-content {
  display: flex;
  flex-direction: column; /* Stack the text and buttons vertically */
  align-items: center; /* Center both text and buttons */
  text-align: center; /* Center text inside */
  }

  .sticky-footer h2 {
    margin-left: 0px;
    font-size: 30px;
  }
  /* Style for text inside the footer */
  .sticky-footer p {
  font-size: 20px;
  margin: 0 0 10px 0; /* Adjust bottom margin */
  margin-right: 300px;
  word-spacing: 0px;
  color: #747474;
  }

  /* Footer buttons container */
  .sticky-footer .footer-buttons {
  display: flex;
  gap: 10px;
  }

  /* Style for buttons */
  .sticky-footer .footer-buttons button {
  padding: 14px 22px;
  font-size: 20px;
  border-radius: 30px;
  cursor: pointer;
  }

  /* Style for Create Account button */
  .sticky-footer .footer-buttons .create-account-footer {
  background-color: #554cf7;
  color: white;
  border: none;
  }

  /* Style for Sign In button */
  .sticky-footer .footer-buttons .sign-in-footer {
  background-color: rgb(255, 255, 255);
  color: #160000;
  border: 1px solid #dadada;
  }

  
  .float-content {
      width: 100%; /* stretch full width */
      min-height: 93px; /* at least 300px height */
      max-height: 93px; /* at least 300px height */
      display: flex;
      align-items: center;
      padding: 20px;
      background: #ffffffee;
      position: sticky;
      top: 0;
      z-index: 10;
      border-bottom: 1px solid #fffffffa;
      box-sizing: border-box; /* important to include padding inside width */
      margin-top: 0px;
  }

  .float-content h2{    
      font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
                'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif,
                'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
      font-size: 1.25rem;
      line-height: 1.75rem;
      margin-top: 10px;
      margin-left: 10px;
      letter-spacing: 0;
      font-weight: 700;
  }

  .float-content p{
      font-size: 18px;
      margin-top: 5px;
      margin-left: 10px;
      font-weight: 500;
      color: #5f5f5f;
  }

  .float-content svg {
      margin-top: -5px;
      margin-left: 1.5px;
      cursor: pointer;
  }

  .float-content .dotdot {
      margin-right: 0px;
      color: #8b8b8b;
      margin-left: auto;
  }


  #profile{
      width: 100%;
      height: 80px;
      display: flex;
      padding: 20px;
  }

  #profile img{
      height: 43px;
      margin-top: -7px;
      width: 43px;
      object-fit: cover;
      border-radius: 30px;
  }

  #profile h3{
      margin-top: -5px;
      font-size: .875rem;
      line-height: 1.25rem;
      margin-left: 15px;
  }

  #profile p{
      margin-top: 0px;
      font-size: .875rem;
      line-height: 1.25rem;
      margin-left: 15px;
      color: #6b6b6b;
  }

  .name-check{
      display: flex;
  }

  .name-check svg{
      margin-top: -2px;
      margin-left: 3px;
      color: #ff0080;
  }

  #content-img{
      margin-left: 3%;
      width: 94%;
      border-radius: 10px;
  }

  .info{
      display: flex;
      margin-left: 10px;
      padding: 10px;
      font-size: 15px;
  }

  .info .infoLikes{
      display: flex;
  }

  .infoLikes p,h2{
      margin-left: 5px;
  }

  .infoLikes #likes{
      margin-left: 10px;
  }

  .date{
      margin-top: -2px;
      margin-right: 10px;
      margin-left: auto;
      font-size: 13px;
  }

  .spacingbottom{
      height: 200px;
  }

  .interact{
      width: 100%;
      cursor: pointer;
  }

  #retruthsTxt, #likesTxt, .date{
      color: #575757;
  }

  #caption{
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
               'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif,
               'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';

    padding: 20px;
    margin-top: -35px;
    font-size: 1.1rem;
    line-height: 1.75rem;
    color: #1d1d1d;
    word-spacing: 0.3px;
  }
  
  #username, #name, #profilePic{
    cursor: pointer;
    font-weight: 600;
    word-spacing: 0px;
  }
  
  #username{
    font-weight: 400;
    word-spacing: 0px;
  }

  .layout {
    display: flex;
    max-width: 1600px; /* or whatever total width you want */
    margin: 0 auto; /* center it horizontally */
    height: 100vh;
  }

  .new-to-truth{
    margin-top: 50px;
    min-width: 280px;
    margin-left: 35px;
  }

.wrapper {
  display: flex;
  justify-content: center;
  position: relative;
}

.content-center {
  margin-left: -40px;
  border-left: 1px solid #ebebeb;
  border-right: 1px solid #ebebeb;
  min-width: 38rem;
  max-width: 38rem;
}

.sidebar-left,
.sidebar-right {
  position: fixed;
  top: 0;
  height: 100vh; /* full height */
  width: 10rem; /* set sidebar width */
}

/* Position left sidebar */
.sidebar-left {
  /* left edge of .content-center minus sidebar width */
  left: calc(50% - 19rem - 10rem); /* 50% center - half content width - sidebar width */
}

/* Position right sidebar */
.sidebar-right {
  /* right edge of .content-center */
  margin-top: -10px;
  margin-left: -15px;
  left: calc(50% + 19rem); /* 50% center + half content width */
}

.truth-logo {
  width: 115px;
  margin-left: -145px;
  margin-bottom: 20px;
  margin-top: 30px;
}

#replies{
  margin-top: 1px;
  font-size: 14px;
}

/* ===== 📱 Shrink when window is smaller than 1600px ===== */
@media (max-width: 1255px) {
  .content-center {
    margin-left: 25%;
    min-width: 50%;
    max-width: 50%;
  }

  .sidebar-left,
  .sidebar-right {
    width: 25%;
  }

  .sidebar-left {
    left: 0;
  }

  .sidebar-right {
    right: 0;
    left: auto; /* reset left because we are using right now */
  }.truth-logo {
    display: block;
    width: 120px;
    margin: 30px auto 20px auto;
    margin-left: 40px;
  }

  .buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
    width: 70%;
    align-items: right;
  }

  .buttons button {
    width: 120%;
    margin-left: 40px;
    padding: 12px;    
    font-size: .875rem;
    line-height: 1.25rem;
    border-radius: 30px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
  }
  
  .new-to-truth p {
    font-size: .875rem;
    line-height: 1.25rem;
    color: #555;
    width: 75%;
  }

  .footer-links {
    color: #777;
    margin-top: 15px; /* small margin after buttons */
    text-align: left;
    width: 75%;
  }

  .footer-links p {
    margin: 20px 0;
    margin-left: 35px;
    font-size: 0.9rem;
    line-height: 1rem;
    width: 75%;
    line-height: 1.2rem;
  }    
}