/* My Account Button */
.my-account-button {
  padding: 5px;
  border: none;
  cursor: pointer;
}
.my-account-button::before {
  content: "";
  width: 28px;
  height: 23px;
  display: inline-block;
  background: url(../../../../woocommerce/assets/img/icon-user.svg);
  background-repeat: no-repeat;
  margin-top: 8px;
}

/* My Account Popup */
.my-account-popup {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Ensure it's on top */
}

.my-account-popup.open {
  display: flex; /* Show when open */
}

/* My Account Popup Content */
.my-account-popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  width: 100%;
  max-width: 450px; /* Adjust as needed */
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Close Button */
.close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 35px;
  color: red;
  cursor: pointer;
}
