@font-face {
    font-family: "poppins";
    src: url(../../assets/font/Poppins-Regular.woff2);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* General reset for margins and padding */
  body {
    font-family: "poppins";
    display: none;
  }
  
  #loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  /* Scanner loading animation */
  .scanner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 5px solid transparent;
    border-top: 5px solid #007bff;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  /* Hide properties until fully loaded */
  #content {
    display: none;
  }
  
  /* Blur and disable background when menu is open */
  .content-blur {
    filter: blur(3px);
    pointer-events: none;
    user-select: none;
    transition: filter 0.1s ease;
  }
  
  /* Optional: Disable scrolling when menu is open */
  .disable-scroll {
    overflow: scroll;
  }
  
  /* Header Styling */
  header {
    border-bottom: 1pt solid #808080;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    color: #333;
    padding: 10px 3%;
  }
  
  .logo {
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    gap: 2rem;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    font-size: 16px;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #333;
    padding: 5px 10px;
    border-radius: 3px;
    transition: 0.3s ease;
  }
  
  .access-box {
    display: flex;
    margin: 0 auto;
    font-size: 14px;
  }
  
  .access-box>a {
    text-decoration: none;
    margin-right: 15px;
  }
  
  .access-box>.post {
    padding: 9px;
    background-color: rgba(8, 97, 175, 1);
    color: #fff;
    border-radius: 7px;
  }
  
  .access-box>.login {
    color: rgba(8, 97, 175, 1);
    border: 1px solid rgba(8, 97, 175, 1);
    padding: 9px;
    border-radius: 7px;
  }
  
  .call_action {
    display: none;
  }
  
  .greeting {
    font-size: 16px;
    margin-top: -10rem;
    font-family: "poppins";
    margin-top: 10px;
  }
  
  .logout {
    margin-top: 10px;
    margin-left: 20px;
    color: rgba(8, 97, 175, 1);
    font-weight: 600;
    font-size: 14px;
  }
  
  .bx-user {
    color: #333;
    font-size: 16px;
    margin-top: 10px;
    font-weight: 700;
    padding-right: 1px;
    text-decoration: none;
    font-family: "poppins";
  }
  
  .menu-toggle {
    position: relative;
    cursor: pointer;
    width: 42px;
    height: 19px;
    display: none;
    margin-top: 0.8rem;
  }
  
  .menu-toggle span {
    display: block;
    width: 60%;
    height: 4px;
    background-color: #0e0e0e;
    position: absolute;
    left: 0;
    transition: all 0.2s ease;
    z-index: 30;
  }
  
  .menu-toggle span:nth-child(1) {
    top: 0;
  }
  
  .menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  
  .menu-toggle span:nth-child(3) {
    bottom: 0;
  }
  
  /* Animation for the hamburger icon */
  .menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .nav-links3 {
    display: none;
  }
  
  .nav-links2 {
    display: block;
  }
.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 7rem;
}
h1, h2, h3 {
    color: #085FAF;
    margin-top: 1rem;
}
p {
    line-height: 1.6;
    margin-top: 1rem;
}
ul {
    list-style-type: none;
    padding: 0;
}
.ul li {
    background: #085FAF;
    color: white;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    margin-bottom: 1rem;
}
a {
    color: #085FAF;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}




@media screen and (max-width: 857px) {
    .nav-links3 {
      display: block;
      margin-top: 0.4rem;
    }
  
    .nav-links2 {
      display: none;
    }
  
    .sold-overlay {
      margin-left: 4.5rem;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      background-color: #ffffff;
      position: absolute;
      color: #000;
      top: 95px;
      right: 10%;
      width: 80%;
      padding: 30px 0px;
      transform: translateX(100%);
      border-radius: 5px;
      z-index: 10;
    }
  
    .logout {
      margin-top: 10px;
      margin-left: 0px;
    }
  
    .nav-links>li {
      text-align: center;
      margin-top: 0.4rem;
    }
  
    .nav-links>li:hover {
      /* transform: translate(15px); */
      text-decoration: underline;
    }
  
    .nav-links.active {
      display: flex;
      transform: translateX(0);
      opacity: 1;
    }
  
    .call_action {
      display: block;
      display: flex;
    }
  
    .menu-toggle {
      display: block;
    }
  
}  