/* Default styles for large screens (desktop) */
.auth-container {
    width: 45px;
    height: 45px;
    left: 180px;
    background-image: url(https://c.animaapp.com/lGoHvxXp/img/rectangle-3@2x.png);
    background-size: cover;
    background-position: 50% 50%;
  }

  .auth-container .auth-container-image{
    width: 20px;
    height: 20px;
    position: absolute;
    top: 12px;
    left: 12px;
  }
 
  
  .nav-profile-container {
    width: 45px;
    height: 45px;
    top: 63px;
    left: 180px;
    object-fit: cover;
  }

  .nav-profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%; /* Make the image circular */
    object-fit: cover;
  }
  

/* Responsive Design  nav bar buttons */
@media screen and (max-width: 768px) {
    .button-container .auth-container {
      left: 100px;
      gap: 5px;
      display: block;
      align-items: center;
    }
  
    .button-container button {
      padding: 0 8px;
      font-size: 12px;
    }
  
    .loginBtn,
    .signupBtn,
    .pricingBtn {
      min-width: auto;
    }
  
    /* Profile Container Mobile Styles */
    .profile-container {
      position: absolute;
      left: 206px;
      gap: 5px;
    }
  }


.button-container {
    display: flex; /* Flex layout for the container */
    justify-content: space-between;
}


.button-container button {
    height: 420px;
    border-radius: 21px;
    border: none;
    font-family: "Open Sans", Helvetica;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}


.dropdown-menu {
    position: absolute;
    top: 100%; /* Position it below the button */
    left: 0;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none; /* Initially hidden */
  }
  
  .dropdown-menu.hidden {
    display: none;
  }
  
  .dropdown-menu.visible {
    display: block;
  }
  
  .dropdown-item {
    padding: 5px 10px;
    cursor: pointer;
  }
  