/* ahamoリユース品 最小スタイル */
/* !important 不使用。thead背景色・装飾・フォントサイズ変更・ボーダー指定は行わない */

.auip-box {
	overflow-x: auto;
	margin: 1em 0;
}

/* ヘッダー部: 左に絞込、右に更新日 */
.auip-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 16px;
	margin-bottom: 10px;
}

.auip-head--right {
	justify-content: flex-end;
}

/* 絞込フィルタ */
.auip-filters {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
}

.auip-filters label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

/* テキスト入力とプルダウンの装飾 */
.auip-filters input[type="search"],
.auip-filters select {
	padding: 6px 10px;
	border: 1px solid #bbb;
	border-radius: 6px;
	background: #fff;
	box-shadow: 0 1px 2px rgba(0,0,0,0.04);
	line-height: 1.4;
	transition: border-color 0.15s, box-shadow 0.15s;
}

.auip-filters input[type="search"] {
	min-width: 180px;
}

.auip-filters select {
	padding-right: 28px;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'><path fill='%23666' d='M0 0l5 6 5-6z'/></svg>");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 10px 6px;
}

.auip-filters input[type="search"]:hover,
.auip-filters select:hover {
	border-color: #888;
}

.auip-filters input[type="search"]:focus,
.auip-filters select:focus {
	outline: none;
	border-color: #2e8ce6;
	box-shadow: 0 0 0 2px rgba(46,140,230,0.2);
}

/* 更新日: 右端、小さく、控えめ */
.auip-meta {
	margin-left: auto;
	font-size: 0.85em;
	color: #666;
	white-space: nowrap;
}

.auip-tbl {
	width: 100%;
	border-collapse: collapse;
}

.auip-tbl th,
.auip-tbl td {
	padding: 8px 12px;
	vertical-align: middle;
	line-height: 1.5;
}

/* 見出し(thead)は中央寄せ、内容(tbody)は左寄せ */
.auip-tbl thead th {
	text-align: center;
}

.auip-tbl tbody th,
.auip-tbl tbody td {
	text-align: left;
}

/* 分割月額セル: 途中改行を防止 */
.auip-tbl td.auip-inst {
	white-space: nowrap;
}
