/**
 * R_aisonné - Admin Styles
 *
 * Styling for the R_aisonné plugin admin interface, settings panel, and management components.
 *
 * @package           R_aisonné
 * @author            H.ROMF (Hiromitsu Fujiki)
 * @copyright         2010-Present H.ROMF
 * @link              https://hromf.com/plug-in/r_aisonne/
 * @license           GPL-2.0-or-later
 *
 * This product's license is managed and validated via Freemius SDK.
 * 本製品のライセンスは Freemius SDK を通じて管理・検証されています。
 */

/* 1. 無料プランのボタン：本来のテキストを隠して「Download」を表示 */
/* 画面内に .fs-price (金額) がない ＝ 無料プラン と判定 */
body:not(:has(.fs-price)) .fs-cta.fs-cta--appearance-primary span,
body:not(:has(.fs-price)) .fs-cta.fs-cta--appearance-primary {
    font-size: 0 !important;
    color: transparent !important;
}

body:not(:has(.fs-price)) .fs-cta.fs-cta--appearance-primary::before {
    content: "Download" !important;
    font-size: 16px !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    pointer-events: none !important;
}

/* 2. 有料プラン（金額が表示されるモーダル）のボタンは、何も変更しない（CSSをリセット） */
body:has(.fs-price) .fs-cta.fs-cta--appearance-primary span {
    font-size: 16px !important;
    color: #fff !important;
}

/* 3. オプトイン（無料プラン用チェックボックス）の非表示 */
.fs-optin-container {
    display: none !important;
}