/**
 * 水やりスケジュール生成ツール - 専用スタイル
 */

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

/* ========================================
   注意点（結果サブ内）
   ======================================== */
.watering-note-value {
	font-size: 14px !important;
	line-height: 1.5;
}

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

.watering-time-box {
	padding: 12px 14px;
	background: #f1f8e9;
	border: 1px solid #c5e1a5;
	border-radius: var(--radius);
	font-size: 14px;
	color: #33691e;
	line-height: 1.7;
}

.watering-species-note {
	padding: 12px 14px;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	font-size: 14px;
	color: var(--color-text);
	line-height: 1.7;
}

/* ========================================
   兆候チェックリスト
   ======================================== */
.watering-checklist {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.watering-checklist li {
	position: relative;
	padding: 8px 12px 8px 32px;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	font-size: 13px;
	color: var(--color-text);
	line-height: 1.5;
}

.watering-checklist li::before {
	content: '';
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 14px;
	height: 14px;
	border: 2px solid #aed581;
	border-radius: 3px;
	background: var(--color-white);
}

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

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

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

/* ========================================
   レスポンシブ
   ======================================== */
@media (max-width: 600px) {
	.watering-note-value {
		font-size: 12px !important;
	}
}
