body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.profile-container {
  background-color: rgba(30, 30, 30, 0.2);
  padding: 45px 0;
  width: 841px;
  height: 700px;
  border-radius: 20px;
  padding-top: 20px;
  overflow-y: scroll;
  overflow-x: hidden;
  margin: 0 10px;
  position: relative;
}

@media screen and (max-width: 800px) {
  .profile-container {
    margin-bottom: 35px;
    margin-top: 35px;
  }
}

@media screen and (max-width: 1000px) {
  .profile-container {
    height: auto;
    overflow: hidden;
  }
}

.profile-container .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 30px;
}

.profile-container .header .logo,
.profile-container .header .share {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.profile-container .header .logo:hover,
.profile-container .header .share:hover {
  background-color: rgba(255, 255, 255, 0.932);
  cursor: pointer;
}

.profile-container .header .share i {
  font-size: 28px;
  color: #1e1e1e;
}

.profile-container .user {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
}

.profile-container .user .user-info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
}

.profile-container .user .user-info .user-logo {
  border: 1px solid rgba(128, 128, 128, 0.55);
  border-radius: 50%;
  width: 100px;
  height: 100px;
}

.profile-container .user-info .text .username-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.profile-container .user-info .text .badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.profile-container .user-info .text .badges img,
.profile-container .user-info .text .badges i {
  filter: drop-shadow(0 0 4px #fefefe);
  width: 22px;
}

.profile-container .user-info .text .username-container h2 {
  margin: 0;
}

.profile-container .user-info .text p {
    margin: 0 auto;
    font-size: 18px;
    text-align: center;
    width: 90%;
    margin-top: 12px;
}

.profile-container .user .socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.profile-container .user .socials i {
  font-size: 30px;
}

.profile-container .user .socials a {
  transition: 0.3s;
}

.profile-container .user .socials a:hover {
  transform: translateY(-2px);
}

.profile-container .user .links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}

.profile-container .user .links .link {
  width: 470px;
  max-width: 470px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  border: 2px solid var(--main-color);
  border-bottom-width: 6px;
  border-right-width: 6px;
  border-radius: 41px;
  transition: 0.2s;
}

@media screen and (max-width: 570px) {
  .profile-container .user .links .link {
    width: 400px;
  }
}

@media screen and (max-width: 520px) {
  .profile-container .user .links .link {
    width: 340px;
    font-size: 18px;
    height: 60px;
  }
}

.profile-container .user .links .link:hover {
  border-bottom-width: 10px;
  border-right-width: 10px;
}

::-webkit-scrollbar-track {
  background: none !important;
}

#tippy-1 {
  /* background-color: red !important; */
  font-family: var(--ar-font) !important;
}

.share-card {
  position: absolute;
  width: 400px;
  padding: 15px;
  background: var(--white-color);
  border-radius: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 17px;
  flex-direction: column;
  z-index: 100; /* Position on top of the blurred background */
}
.share-card #closeButton {
  cursor: pointer;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  animation: fadeIn 0.3s ease-in;
}

.fadeOut {
  animation: fadeOut 0.3s ease-out;
}

.d-none {
  display: none !important;
}

.share-card .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.share-card .header .title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.share-card .header .title i {
  font-size: 30px;
  color: var(--main-color);
}

.share-card .header .title h1 {
  font-size: 24px;
  font-weight: bold;
  color: var(--main-color);
  margin-bottom: 6px;
}

.share-card .header .title p {
  margin-top: 0;
  font-size: 16px;
  color: rgba(30, 30, 30, 0.6);
}

.share-card .actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.share-card .actions .item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 45px;
  background-color: #fffafa;
}

.share-card .actions .item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffeef1;
  width: 40px;
  height: 40px;
  border-radius: 7px;
}

.share-card .actions .item a {
  margin-right: 7px;
  color: var(--dark-color);
  font-size: 17px;
  font-weight: 700;
}

.share-card .actions .item .icon img {
  width: 25px;
}

.share-card #qrCodeButton a {
  cursor: pointer;
}

.share-card .actions .item.account {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
}

.share-card .actions .item.account .icon {
  width: 90px;
  font-family: var(--almnb3-font);
}

.share-card .actions .item.account .icon a.logo {
  font-size: 20px;
  color: #ee8383;
}

.share-card .actions .item.account .link {
  font-weight: normal;
  font-size: 16px;
  color: rgba(30, 30, 30, 0.7);
}

.share-card .actions .item.account .copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.share-card .actions .item.account .copy a {
  color: var(--main-color);
}

.share-card .user {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 13px;
}

.share-card .user .logo {
  border: 1px solid rgba(128, 128, 128, 0.55);
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.share-card .user .username h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 4px;
}

.share-card .user .username .link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
}

.share-card .user .username .link img {
  width: 16px;
}

.share-card .user .username .link p {
  margin: 0;
  direction: ltr;
}

.share-card .start {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.share-card .start h3 {
  font-size: 19px;
  color: rgba(30, 30, 30, 0.9);
  font-weight: 600;
  width: 90%;
  text-align: right;
}

.share-card .start a {
  width: 95%;
  height: 42px;
  font-size: 18px;
  border-radius: 50px;
  background-color: #1e1e1e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width:767px) {
    .share-card {
        width:340px;
    }
}

.report {
position: relative;
    right: 50%;
    /* bottom: 0; */
    width: fit-content;
    transform: translateX(50%);
    margin-top: 20px;
    text-align: center;
    width: 100%;
}
.report a:nth-child(1)::after {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
}

.report a {
  margin-left: 10px;
  color: #fff !important;
}

.report a:nth-child(2) {
  margin-left: 0;
  margin-right: 10px;
}

.dialogModal {
  position: fixed;
  width: 400px;
  padding: 15px;
  background: var(--white-color);
  border-radius: 20px;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  display: flex;
  gap: 17px;
  flex-direction: column;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 100; /* Position on top of the blurred background */
  /* animation: fadeIn 0.3s ease; */
}

@media screen and (max-width: 767px) {
  .dialogModal {
    right: 50%;
  }
}

@media screen and (max-width: 500px) {
  .dialogModal {
    width: 340px;
  }
}

.dialogModal #closeEditUser {
  cursor: pointer;
}

.dialogModal .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dialogModal .header .title {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.dialogModal .header .title i {
  font-size: 30px;
  color: var(--main-color);
}

.dialogModal .header .title h1 {
  font-size: 24px;
  font-weight: bold;
  color: var(--main-color);
  margin-bottom: 6px;
}

/* Input container */
.dialogModal .input-container {
  display: flex;
  flex-direction: column;
  gap: 8px; /* Space between label and input field */
  width: 100%;
}

/* Label styling */
.dialogModal .input-label {
  font-size: 18px;
  font-weight: 500;
  color: #777e90;
  text-align: right;
  direction: ltr;
}

.mt-10 {
  margin-top: 10px;
}
/* Required asterisk */
.dialogModal .input-label::before {
  content: "*";
  color: var(--main-color);
  margin-left: 4px;
}

/* Input field */
.dialogModal .input-field {
  display: flex;
  align-items: center;
  border: 1px solid #d6ddeb;
  border-radius: 8px;
  padding: 8px 12px;
  background-color: #fff;
  width: 100%;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
  box-sizing: border-box;
  direction: ltr;
}

/* Input container */
.dialogModal .input {
  display: flex;
  align-items: center;
  width: 100%;
  direction: rtl;
  gap: 5px;
}

/* Input */
.dialogModal input {
  font-size: 16px;
  color: #333;
  outline: none;
  border: 1px solid #d6ddeb;
  border-radius: 8px;
  padding: 8px 12px;
  background-color: #fff;
  width: 100%;
  box-sizing: border-box;
  height: 100px;
}

.dialogModal select {
  border: 1px solid #d6ddeb;
}

.dialogModal .input input::placeholder {
  color: #ddd;
  opacity: 1;
}

/* Focus styling */
.dialogModal .input-field:focus-within {
  border-color: var(--main-color);
}

.dialogModal .button-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dialogModal .button {
  background-color: #ffbdbd;
  color: #e46767;
  font-size: 18px;
  font-weight: 700;
  width: 200px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 8px;
  border-radius: 40px;
  cursor: pointer;
  margin: 20px auto;
  border: none;
}

.button i {
  font-weight: normal;
  font-size: 24px;
}

.closeModal {
  cursor: pointer !important;
}

.blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent overlay */
  backdrop-filter: blur(5px);
  opacity: 0; /* Initially hidden */
  pointer-events: none; /* Allows clicks to pass through */
  transition: opacity 0.3s ease;
  z-index: 100;
}

.blur-overlay.active {
  opacity: 1; /* Show blur when active */
}
