/* دکمه سوئیچ */
.wsp-switch-container {
    margin-bottom: 20px;
    text-align: center;
}

.wsp-btn-switch {
    background-color: #fff !important;
    border: 2px solid #333 !important; /* رنگ اصلی قالب وودمارت معمولا مشکی یا تیره است */
    color: #333 !important;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wsp-btn-switch:hover {
    background-color: #333 !important;
    color: #fff !important;
}

/* کانتینر فرم موبایل */
.wsp-otp-container {
    background: #fdfdfd;
    padding: 10px;
    border: 1px dashed #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* لینک بازگشت */
.wsp-back-link {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
}

.wsp-back-link a {
    text-decoration: none;
    border-bottom: 1px dashed;
}

/* وقتی JS کلاس مخفی را اضافه می‌کند، با زور CSS هم آن را مخفی می‌کنیم */
.wsp-hidden-temp {
    display: none !important;
}

/* اصلاح z-index برای اینکه مطمئن شویم دکمه قابل کلیک است */
.wsp-switch-container {
    position: relative;
    z-index: 10;
}