.woocommerce-MyAccount-content {
    background: rgba(26, 26, 26, 0.9);
    color: rgb(224, 224, 224);
    border-radius: 20px;
    padding: 50px 30px;
    box-shadow: 0 15px 40px rgba(64, 162, 216, 0.1);
    position: relative;
    border: 1px solid rgba(64, 162, 216, 0.2);
}

/* فاصله از بالا برای صفحه حساب کاربری ووکامرس */
.woocommerce-account {
    margin-top: 100px;   /* هر چقدر خواستی فاصله بده */
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}


/* ============================= */
/* کانتینر منوی ووکامرس */
/* ============================= */
.woocommerce-MyAccount-navigation {
    text-align: center;
    background: rgba(26, 26, 26, 0.9); /* باکس تاریک و نیمه شفاف */
    border-radius: 20px;
    padding: 50px 30px;
    box-shadow: 0 15px 40px rgba(64, 162, 216, 0.1);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(64, 162, 216, 0.2);
    width: 240px; /* عرض باکس منو */
    margin: 0 auto; /* وسط چین */
}

/* لیست لینک‌ها */
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* آیتم‌های منو */
.woocommerce-MyAccount-navigation-link {
    margin-bottom: 15px;
}

/* لینک‌ها */
.woocommerce-MyAccount-navigation-link a {
    display: block;
    text-decoration: none;
    color: #fff;
    padding: 12px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: rgba(0,0,0,0.2); /* بک‌گراند ملایم لینک */
}

/* هاور و لینک فعال */
.woocommerce-MyAccount-navigation-link a:hover,
.woocommerce-MyAccount-navigation-link.is-active a {
    background: linear-gradient(135deg, #0B60B0 0%, #40A2D8 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(64, 162, 216, 0.3);
}

/* دکمه‌ها داخل منو (اگر باشه) */
.woocommerce-MyAccount-navigation-link a.button,
.woocommerce-MyAccount-navigation-link a.button.alt {
    background: linear-gradient(135deg, #0B60B0 0%, #40A2D8 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(64, 162, 216, 0.3);
    transition: all 0.3s ease;
}

/* هاور دکمه‌ها */
.woocommerce-MyAccount-navigation-link a.button:hover,
.woocommerce-MyAccount-navigation-link a.button.alt:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(64, 162, 216, 0.5);
}

/* ============================= */
/* حالت موبایل / ریسپانسیو */
/* ============================= */
@media (max-width: 768px) {
    .woocommerce-MyAccount-navigation {
        width: 90%;
        padding: 30px 20px;
    }

    .woocommerce-MyAccount-navigation-link a {
        padding: 10px 15px;
    }
}


input{
    width: 100% !important;
    padding: 12px 15px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(64, 162, 216, 0.2) !important;
    background: rgba(26, 26, 26, 0.9) !important;
    color: #fff !important;
    box-shadow: 0 15px 40px rgba(64, 162, 216, 0.1) !important;
    font-size: 16px !important;
    outline: none !important;
    transition: all 0.3s ease !important;
}

/* استایل همه select ها */
select {
    width: 100% !important;
    padding: 12px 15px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(64, 162, 216, 0.2) !important;
    background: rgba(26, 26, 26, 0.9) !important;
    color: #fff !important;
    box-shadow: 0 15px 40px rgba(64, 162, 216, 0.1) !important;
    font-size: 16px !important;
    outline: none !important;
    appearance: none !important; /* برای حذف استایل پیشفرض مرورگر */
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    transition: all 0.3s ease !important;
}

select:focus {
    border-color: #40a2d8 !important;
    box-shadow: 0 15px 40px rgba(64, 162, 216, 0.2) !important;
}