/**
 * 池の水量＆飼育数シミュレーター - 専用スタイル
 */

/* ========================================
   入力セクション
   ======================================== */
.input-section {
	border-bottom: 1px solid var(--color-border);
}

/* ========================================
   詳細セクション
   ======================================== */
.detail-section {
	border-bottom: 1px solid var(--color-border);
}

.detail-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.detail-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
}

.detail-label {
	font-size: 13px;
	color: var(--color-text-secondary);
	flex-shrink: 0;
}

.detail-value {
	font-family: var(--font-display);
	font-size: 14px;
	font-weight: 600;
	color: var(--color-text);
	text-align: right;
}

.detail-note {
	padding: 10px 14px;
	background: #ffebee;
	border: 1px solid #ef9a9a;
	border-radius: var(--radius);
	font-size: 12px;
	color: #b71c1c;
	line-height: 1.6;
}

/* ========================================
   アクションボタン
   ======================================== */
.action-section {
	display: flex;
	justify-content: center;
	gap: 12px;
	padding: 12px 20px;
}

.btn-secondary {
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 500;
	color: #C62828;
	background: var(--color-white);
	border: 1px solid #C62828;
	border-radius: var(--radius);
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: inherit;
}

.btn-secondary:hover {
	background: #ffebee;
}

/* ========================================
   レスポンシブ
   ======================================== */
@media (max-width: 600px) {
	.detail-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}

	.detail-value {
		text-align: left;
	}
}
