/* custom-user-management.css */
/* 主にプラグイン管理画面用のスタイル（inline-style/CSP対策） */

/* 管理画面 wrap の位置調整 */
.cum-admin-wrap {
    position: relative;
}

/* 一括削除ボタンエリア */
.cum-bulk-delete-actions {
    margin-top: 10px;
}

.cum-bulk-delete-note {
    margin-left: 8px;
    color: #666666;
}

/* 一斉メール送信ボタン配置 */
.cum-mail-open-wrap {
    position: absolute;
    top: 0;
    right: 2%;
}

/* モーダル全体（オーバーレイ） */
#cum-mail-modal {
    display: none; /* JS で block に変更 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
}

/* モーダル本体 */
.cum-mail-modal-inner {
    background: #ffffff;
    padding: 20px;
    max-width: 740px;
    margin: 5% auto;
    border-radius: 4px;
    position: relative;
}

/* モーダルのタイトル */
.cum-mail-modal-title {
    text-align: center;
}

/* モーダルの閉じるボタン */
.cum-mail-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

/* モーダル内の送信ボタンの位置 */
.cum-mail-submit-wrap {
    text-align: center;
}

/* 一斉メール送信ボタンの装飾（元の inline style を移行） */
#cum-open-mail-modal {
    padding: 0.5vw 2vw;
    font-size: 0.8vw;
    font-weight: bold;
}

/* フロントのフォームは基本的にテーマに任せる。
   必要であれば、このプラグイン専用のクラスを追加して調整可能。 */
