﻿/* 全体共通のみを書く */

html, body {
    height: 100%;
}

.required-mark {
    color: #dc3545;
    font-weight: 700;
    margin-left: 4px;
}

.required-fields-note {
    color: #6c757d;
    font-size: .875rem;
    margin: 0 0 1rem;
}

/* 旧Edge のデフォルトパスワードトグルを隠す */
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none;
}

/* ============================
   共通：背景の選択を防ぐ（カーソル/Iビーム対策）
   ※入力欄やボタン等の操作要素は除外する
   ============================ */
.app-noselect {
    user-select: none;
    -webkit-user-select: none;
    cursor: default; /* ← これを追加 */
}

/* ただし操作要素は選択を許可（入力カーソル/コピー等を壊さない） */
    .app-noselect input,
    .app-noselect textarea,
    .app-noselect select {
        user-select: text;
        -webkit-user-select: text;
        cursor: text; /* ← 任意（入力系はtextカーソルに戻す） */
    }

    .app-noselect button,
    .app-noselect a {
        cursor: pointer; /* ← ボタン/リンクは指カーソル */
    }
