/* パスワード認証モーダル用 */

/* 1. dialog要素自体のスタイル（枠線や背景を消して、中身のdivのデザインを活かす） */
.auth-modal {
    margin: auto;
    padding: 0;
    border: none;
    background: transparent;
}

/* 2. モーダルが開いたときの「背景（画面全体）」のスタイル */
.auth-modal::backdrop {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 50;
}

/* 結果表示用のメッセージエリア */
#authPassDialog .msg {
    margin-top: 10px;
    font-weight: bold;
    font-size: 0.9em;
}
