/* common.css - 全ページ共通スタイル */

/* ========================================
   パスワード可視化ボタン
======================================== */
.password-mask-toggle {
	position: absolute;
	right: 10px;
	top: 0px;
	padding: 5px 8px;
	border-radius: 5px;
	background: #e5e5e5;
	cursor: pointer;
}
.password-mask-toggle .mask-toggle {
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.password-mask-toggle .mask-label {
	margin-bottom: 0;
	text-align: center;
	font-size: 12px;
	cursor: pointer;
	color: #000;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: #f5f5f5;
}

/* ========================================
   ナビバー共通（agent/site/user 全レイアウトで使用）
======================================== */

.navbar_container {
    background-color: #333;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}
.navbar_container .head-center {
    font-size: 1.1rem;
    font-weight: bold;
}
.btn_command {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
}
.btn_command:hover {
    color: #adf;
}
