/**
 * 給餌量カリキュレーター - 専用スタイル
 */

/* ========================================
   入力セクション
   ======================================== */
.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;
}

.detail-note--info {
	background: #e3f2fd;
	border-color: #90caf9;
	color: #1565c0;
}

/* ========================================
   水温ゲージ
   ======================================== */
.temp-gauge {
	margin-top: 12px;
	padding: 10px 14px;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
}

.temp-gauge-bar {
	height: 8px;
	background: linear-gradient(90deg, #1565c0 0%, #2e7d32 30%, #f57c00 60%, #c62828 100%);
	border-radius: 4px;
	position: relative;
	margin-top: 6px;
}

.temp-gauge-marker {
	position: absolute;
	top: -4px;
	width: 16px;
	height: 16px;
	background: #fff;
	border: 3px solid #C62828;
	border-radius: 50%;
	transform: translateX(-50%);
	transition: left 0.3s ease;
}

.temp-gauge-label {
	font-size: 12px;
	color: var(--color-text-secondary);
	text-align: center;
	margin-bottom: 4px;
}

/* ========================================
   飼料推奨カード
   ======================================== */
.feed-recommendation {
	margin-top: 12px;
	padding: 12px 14px;
	background: #fff8e1;
	border: 1px solid #ffe082;
	border-left: 4px solid #f57c00;
	border-radius: var(--radius);
	font-size: 12px;
	color: #e65100;
	line-height: 1.6;
}

.feed-recommendation strong {
	color: #bf360c;
}

/* ========================================
   アクションボタン
   ======================================== */
.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;
	}
}
