/*
 * آیکون منوی «مدیریت سرویس دی ان اس» در حساب کاربری ووکامرس
 * آیکون از طریق CSS و فونت Dashicons افزوده می‌شود تا از پاک‌سازی HTML توسط ووکامرس جلوگیری شود.
 */

.woocommerce-account .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link--dns-management a {
  text-decoration: none !important;
  padding: 10px 15px !important;
  width: 100% !important;
  display: flex !important;
  background: #f6f7fb !important;
  border-radius: 5px !important;
  grid-gap: 10px !important;
  align-items: center !important;
  position: relative;
}

.woocommerce-account .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link--dns-management a::before {
  content: "\f325" !important; /* dashicons-admin-network */
  font-family: dashicons !important;
  font-weight: normal !important;
  font-size: 18px;
  line-height: 1;
  color: currentColor;
  pointer-events: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 10px; /* فاصله بین آیکون و متن */
}

/* حالت RTL برای اطمینان از سازگاری در قالب‌های راست‌به‌چپ */
.rtl .woocommerce-account .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link--dns-management a::before {
  margin-left: 0;
  margin-right: 10px; /* فاصله بین آیکون و متن در RTL */
}