/* profit_routine simple styles */
.todo-list { list-style: none; padding-left: 0; }
.todo-list li { margin: 6px 0; }
.todo-item { display: flex; align-items: center; gap: 8px; }
.todo-checkbox { width: 18px; height: 18px; }
.todo-label.done { text-decoration: line-through; color: #777; }

/* 이벤트 그룹 사이에 여백 추가 */
.event-group { margin-bottom: 40px; }

/* 모바일에서 To do 아이템을 카드처럼 보이게 함 */
@media (max-width: 767px) {
	.todo-list li { margin: 10px 0; }
	.todo-item {
		display: flex;
		align-items: center;
		gap: 12px;
		background: #fff;
		border-radius: 8px;
		padding: 12px;
		box-shadow: 0 1px 3px rgba(0,0,0,0.06);
		border: 1px solid rgba(0,0,0,0.04);
	}
	.todo-checkbox { width: 22px; height: 22px; flex: 0 0 auto; }
	.todo-label { display: block; width: 100%; }
	.todo-label a { display: block; word-break: break-word; }
	/* 한 줄로 표현하고 말줄임 처리 */
	.todo-label a {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}
