.check-item {
    display: flex;
    align-items: center;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px;
    font-size: 1.2rem;
    background: #f8fafc;
    margin-bottom: 8px;
    cursor: pointer;
}
.check-item.checked {
    border-color: #10b981;
    background: #f0fdf4;
    color: #065f46;
}
.check-item input {
    width: 28px;
    height: 28px;
    margin-right: 20px;
}